Minecraft Wiki
Register
Advertisement

Loot tables are technical JSON files that are used to dictate what items should generate in various situations, such as what items should be in naturally generated containers, what items should drop when breaking a block or killing a mob, what items can be fished, and more. They do not affect dropped experience, or dropped non-item entities such as slimes from larger slimes or silverfish from infested blocks.

Definition[]

Custom data packs use loot tables to change what loot can spawn in containers or drop by mobs. They can either change existing loot tables or create new ones. Note that some blocks, such as bedrock, end portals and other blocks unbreakable in Survival do not have loot tables, some blocks share loot tables (namely wall and floor variants of blocks) and that certain drops, namely head drops from charged creepers and the wither's nether star, are currently not covered by loot tables.[1]

Loot tables belong in the following folder of a data pack's structure:

  • (data pack name)
    • data
      • (namespace)
        • loot_tables
          • (loot_table_name).json

Vanilla loot tables are grouped into 4 categories: gameplay (fishing, cat morning gift, piglin bartering), entities, blocks, and chests, with some tables being in subfolders of those. For example, the file for zombies would go in data pack name/data/minecraft/loot_tables/entities/zombie.json. This makes every zombie in that world use the datapack's loot table rather than the default zombie loot table.

Usage[]

The loot tables are structured as a String tag that determines the table to use, and a Long tag determining the seed. Containers or mobs with the same seed and table drop the same items. Loot tables do not determine the container's slot to be used; that is randomly determined based on the seed.

For barrel, chest, trapped chest, hopper, minecart with chest, boat with chest, minecart with hopper, dispenser, dropper, and shulker box:

  • The root object.
    •  LootTable: Loot table to be used to fill the container when it is next opened, or the items are otherwise interacted with. When the container is a chest that is part of a double chest, only the half corresponding to the tagged single-chest is affected.
    •  LootTableSeed: Seed for generating the loot table. Works similarly to the seeds for worlds. 0 or omitted uses a random seed.

These tags are removed once the items have been interacted with (by opening the container, breaking the container, etc.), and only then are items put in the container.

For mobs:

  • The root object.
    •  DeathLootTable: Loot table to be used for the items that drop when the entity is killed.
    •  DeathLootTableSeed: Seed for generating the loot table. Works similarly to the seeds for worlds. 0 or omitted uses a random seed.

The loot tables of mobs and containers can be altered with /execute store and /data. The player could also grant a loot table to an entity or drop it in the world with /loot.

Tags[]

Loot tables are defined using the JSON format. Below are a list of tags used.

  • The root object.
    •  type: Optional, specifies the context in which the loot table should be invoked. All item functions, predicates and number providers are then validated to ensure the parameters of the context type specified here will cover all requirements, and prints a warning message in the output log if any function or condition requires a context parameter that is not covered. Valid loot context types are described below.
    •  functions: Invokes item functions, in order, upon all item stacks generated by this table.
      • An item function. The JSON structure of this object is described on the Item modifiers page.
    •  pools: A list of all pools for this loot table. Each pool used generates items from its list of items based on the number of rolls. Pools are applied in order.
      • A pool. The JSON structure of this object is described below.
    •  random_sequence: A resource location specifying the name of the random sequence that will be used to generate loot from this loot table. If only one loot table uses a specific random sequence, the order of the randomized sets of items generated is the same for every world using the same world seed. If multiple loot tables use the same random sequence, the loot generated from any one of them changes depending on how many times and in what order any of the other loot tables were invoked.

Pool[]

  • The root object.
    •  conditions: A list of predicates that must all pass for this pool to be used.
      • A predicate. The JSON structure of this object is described on the Predicates page.
    •  functions: Invokes item functions, in order, to all item stacks generated by this pool.
      • An item function. The JSON structure of this object is described on the Item modifiers page.
    •  rolls: A Number Provider. Specifies the number of rolls on the pool.
    •  bonus_rolls: A Number Provider. Specifies the number of bonus rolls on the pool per point of luck. Rounded down after multiplying. Defaults to exactly 0.0.
    •  entries: A list of all things that provide loot entries for this pool. One loot entry is chosen per roll as a weighted random selection from all loot entries added into the pool. Note that it is not selected weightedly from the elements of this list, instead, the weighted selection is to select from all loot entries provided by these elements (entry providers), which are different because an element (entry provider) can provide empty, or one or more weighted loot entries.
      • The JSON structure of this object is described below.

Entry provider[]

  • The root object.
    •  conditions: A list of predicates that must all pass for the provided loot entry/ies to be added into the loot pool.
      • A predicate. The JSON structure of this object is described on the Predicates page.
    •  type: Resource location of the type of entry provider. Set to one of the following values.

The possible values for  type and associated extra contents:

  • item—Provides a loot entry that drops a single item stack.
    •  functions: Invokes item functions to the item stack(s).
      • An item function. The JSON structure of this object is described on the Item modifiers page.
    •  weight: Determines how often the loot entry is chosen out of all the entries in the pool. Entries with higher weights are used more often. The chance of an entry being chosen is [this entry's weight ÷ total of all considered entries' weights].
    •  quality: Modifies the loot entry's weight based on the luck attribute of the killer_entity for loot context type entity or the this entity for all other loot table types. Formula is floor(weight + (quality × generic.luck)).
    •  name: The resource location of the item to be generated, e.g. minecraft:diamond. The default, if not changed by item functions, is a stack of 1 of the default instance of the item.
  • tag—Provides a loot entry that generates all item in an item tag, or multiple loot entries (each entry generates a single item in the item tag).
    •  functions: Invokes item functions to the item stack(s).
      • An item function. The JSON structure of this object is described on the Item modifiers page.
    •  weight: Determines how often a loot entry is chosen out of all the entries in the pool. Entries with higher weights are used more often. The chance of an entry being chosen is [this entry's weight ÷ total of all considered entries' weights].
    •  quality: Modifies the loot entry's weight based on the luck attribute of the killer_entity for loot context type entity or the this entity for all other loot table types. Formula is floor(weight + (quality × generic.luck)).
    •  name: The resource location of the item tag to query, e.g. minecraft:arrows.
    •  expand: If set to true, provides one loot entry per item in the tag with the same weight and quality, and each entry generates one item. If false, provides a single loot entry that generates all items (each with count of 1) in the tag.
  • loot_table—Provides another loot table as a loot entry.
    •  functions: Invokes item functions to the item stack(s).
      • An item function. The JSON structure of this object is described on the Item modifiers page.
    •  weight: Determines how often the loot entry is chosen out of all the entries in the pool. Entries with higher weights are used more often. The chance of an entry being chosen is [this entry's weight ÷ total of all considered entries' weights].
    •  quality: Modifies the loot entry's weight based on the luck attribute of the killer_entity for loot context type entity or the this entity for all other loot table types. Formula is floor(weight + (quality × generic.luck)).
    •  name: The resource location of the loot table to be used, e.g. minecraft:gameplay/fishing/junk.
  • dynamic—Provides a loot entry that generates block-specific drops.
    •  functions: Invokes item functions to the item stack(s).
      • An item function. The JSON structure of this object is described on the Item modifiers page.
    •  weight: Determines how often the loot entry is chosen out of all the entries in the pool. Entries with higher weights are used more often. The chance of an entry being chosen is [this entry's weight ÷ total of all considered entries' weights].
    •  quality: Modifies the loot entry's weight based on the luck attribute of the killer_entity for loot context type entity or the this entity for all other loot table types. Formula is floor(weight + (quality × generic.luck)).
    •  name: Can be contents to drop block entity contents.
  • empty—Provides a loot entry that generates nothing into the loot pool.
    •  functions: Invokes item functions to the item stack(s).
      • An item function. The JSON structure of this object is described on the Item modifiers page.
    •  weight: Determines how often the loot entry is chosen out of all the entries in the pool. Entries with higher weights are used more often. The chance of an entry being chosen is [this entry's weight ÷ total of all considered entries' weights].
    •  quality: Modifies the loot entry's weight based on the luck attribute of the killer_entity for loot context type entity or the this entity for all other loot table types. Formula is floor(weight + (quality × generic.luck)).
  • group—All entry providers in the children list is applied into the loot pool. Can be used for convenience, e.g. if one condition applies for multiple entries.
    •  children: The list of entry providers.
      • An entry provider.
  • alternatives—Only the first successful (conditions are met) entry provider, in order, is applied to the loot pool.
    •  children: The list of entry providers.
      • An entry provider.
  • sequence—The child entry providers are applied to the loot pool in sequential order, continuing until an entry provider's conditions are not met, then applying no more entry providers from the children.
    •  children: The list of entry providers.
      • An entry provider.

Recurring JSON structures within loot tables and other data pack files[]

Predicate[]

Main article: Predicate

Predicates (aka. Loot conditions) are JSON structures that are used within loot tables to add requirements to a drop, pool, or function. They can also be used in standalone files (see Predicate), where they can be called upon from multiple different contexts.

The specific structure of a predicate is shown on the Predicates page.

Item function[]

Main article: Item modifier

Item functions (aka. loot functions) are used within loot tables to apply modifications to the item stack being generated, such as adjusting the stack size or adding enchantments. They can also be used in standalone files called Item modifiers, where they can be called upon to modify items in an already existing item slot within a block or entity's inventory.

The specific structure of an item function is shown on the Item modifiers page.

Number Providers[]

Loot tables use number providers in some places that accept an int or float. They can either be defined as a constant value or as an object.

  • : Constant number provider.

Or:

  • : The root tag.
    •  type: The number provider type.

The possible values for  type and associated extra contents:

  • constant—A constant value.
    •  value: The exact value.
  • uniform—A random number following a uniform distribution between two values (inclusive).
    •  min: Number provider. The minimum value.
    •  max: Number provider. The maximum value.
  • binomial—A random number following a binomial distribution
    •  n: Number provider. The amount of trials.
    •  p: Number provider. The probability of success on an individual trial.
  • score—To query and use a scoreboard value.
    •  target: To choose which player name or entity UUID to query.
      •  type: Set to fixed to manually specify a player name or UUID. Set to context to use an entity from loot context.
      •  name: Included only if  type is set to fixed. Specifies the name of the player, or the entity's UUID (in hypenated hexadecimal format) whose score to query.
      •  target: Included only if  type is set to context. Specifies an entity from loot context to query the score of. Can be this, killer, direct_killer, or killer_player.
    •  score: The scoreboard objective to query on the selected player name or UUID.
    •  scale: Optional. Scale to multiply the score before returning it.

Loot context types[]

The  type field is used when loading the data pack to check whether the context parameters used by this loot table match the specified context type. The field makes it possible to check for errors in the loot table files without applying them in-game. If the loot table is used for a specific context, specifying the type field allows the game to check whether the loot table file uses parameters that will not be provided in that context.

Depending on the type of invocation, different parameters may be supplied to predicates, loot functions and number providers. Below is a list of all possible contexts of invocation, and the parameters:

Loot context type When it is used Loot context parameters that are supplied Loot context parameters that may be supplied
empty
  • Only used by the hardcoded empty loot table. Supplies no loot context parameters.
  • Specifying "type":"empty" means no context parameters can be used in this loot table.
None None
chest
  • Origin: The center of the chest.
  • this entity: The entity that opened the chest.
command
  • Not used for loot tables. Specifying "type":"command" doesn't make sense.
  • Used internally by commands such as /item modify or /execute (if|unless) predicate.
  • Origin: The position where the command is run.
  • this entity: The entity that is @s when the command is run.
selector
  • Not used for loot tables. Specifying "type":"selector" doesn't make sense.
  • Used internally by the predicate target selector argument.
  • Origin: The position of the entity being checked.
  • this entity: The entity being checked.
fishing
  • Origin: The position of the fishing bobber.
  • Tool: The fishing rod item that the player cast
  • this entity: The fishing bobber.
entity
  • Loot from a living entity's death.
  • The command /loot … kill <target>.
  • this entity: The entity that died.
  • Origin: The location of the entity's death.
  • Damage source: The source of the damage that caused the entity to die.
  • killer entity: The entity that was the source of the final damage to the victim entity.
  • direct_killer entity: The entity that directly contacted the victim entity to kill them.
  • killer_player entity: The player that most recently damaged the victim entity.
archaeology
  • Origin: The center of the suspicious sand.
  • this entity: The entity that used the brush on the suspicious sand.
gift
  • Gift from a cat or villager.
  • Origin: The cat or villager's location.
  • this entity: The cat or villager that gave the gift.
barter 
  • this entity: The piglin bartered with.
advancement_reward
  • this entity: The player that gained the advancement.
  • Origin: The player's location when they gained the advancement.
advancement_entity
  • Not used for loot tables. Specifying "type":"advancement_entity" doesn't make sense.
  • Used internally when an advancement invokes a predicate on an entity.
  • this entity: The entity being checked.
  • Origin: The position of the player who triggers this advancement criterion.
advancement_location
  • Not used for loot tables. Specifying "type":"advancement_location" doesn't make sense.
  • Used internally when an advancement invokes a predicate on the location of a block which an item was used on.
  • this entity: The player to gain the advancement.
  • Origin: The center of the block that was interacted with.
  • Tool: The item used to interact with the block.
  • Block state: The block that was interacted with.
generic
  • Not used. Supplies all loot context parameters.
  • Specifying "type":"generic" or omitting it means no checking for context parameters in this loot table when loading the data pack.
N/A N/A
block
  • Loots from breaking a block.
  • The command /loot … mine <pos>.
  • Block state: The block that was broken.
  • Origin: The center of the broken block.
  • Tool: The tool used to mine the block.
  • this entity: The player that mined the block.
  • Block entity: Any block entity data of the block that was broken, if it was a block entity.
  • Explosion radius: The radius of the explosion that broke the block, if broken via an explosion.

History[]

Java Edition
1.9
{{Extension DPL}}<ul><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><li>[[Bundle|Bundle]]<br/>{{Experimental feature|bundle}}
{{planned|BE}}
{{Item
| image = Bundle.png
| image2 = Bundle Filled.png
| rarity = Common
| renewable = No
| stackable = No
}}

A '''bundle''' is an [[item]] that can store up to a stack's worth of mixed [[item]] types within itself in a single [[inventory]] slot. Items that stack to 16 occupy more space within the bundle, and items that do not stack occupy the entire bundle without allowing space for any other items.

== Obtaining ==

=== Crafting ===
{{Crafting
  |showdescription=1
  |A1=String      |B1=Rabbit Hide |C1=String 
  |A2=Rabbit Hide                 |C2=Rabbit Hide
  |A3=Rabbit Hide |B3=Rabbit Hide |C3=Rabbit Hide
  |Output=Bundle
  |type=Tool
  |description={{OnlyExperimental|bundle}}
}}

== Usage ==
<!--The tooltip does not reflect the current bundle "tooltip"-->
{{FakeImage|style=max-width:250px;
|1={{Slot|Stick,64}}{{Slot|Ender Pearl,16}}{{Slot|Iron Sword}}<br>{{Slot|Stick,1}}{{Slot|Ender Pearl,4}}{{Slot|Iron Sword,64}}<br>{{Slot|Filled Bundle[Stick x32/Ender Pearl x8]| title = Bundle|link=none}}
|2=Item stack sizes (top row) and the number of bundle slots they take up (middle row). Sticks stack to 64, so they take up one bundle slot; ender pearls stack to 16, so they take up four; and swords do not stack, so they take up the whole bundle. So, for instance, a bundle may have 32 sticks and 8 ender pearls inside (bottom), which take up a total of {{Tooltip|(32×1)|32 Sticks}}+{{Tooltip|(8×4)|8 Ender Pearls}}=64 bundle slots.
}}
Bundles are used to store different [[item|item type]]s in the same [[inventory]] slot. This does not, however, increase the total capacity of the slot: each bundle has 64 "bundle slots" and each item placed in the bundle takes up these slots similar to how they take up space in a normal inventory slot: items that stack to 64 take up 1 bundle slot, items that stack to 16 (for example, [[egg]]s) take up 4, and items that do not stack (such as tools/weapons/armor) take up the whole bundle, all 64 slots.

Although bundles themselves cannot be stacked, a bundle can be placed inside another (nested): the inner bundle itself uses 4 slots plus the number of slots already occupied by the items in that bundle.<ref>{{bug|MC-203567||Bundles can be placed inside of bundles|WAI}}</ref>  

To place items inside a bundle, either (1) pick up the bundle in the inventory and right-click on the item(s) to be placed inside or (2) pick up the item(s) and right-click on the bundle. When placing bundles inside another bundle, the interface uses the first method: picking up Bundle A and right clicking on Bundle B attempts to store Bundle B inside A.  

Bundles can be {{ctrl|used}} inside the inventory to take out the last item put in. In this way, items are accessible LIFO (last in, first out). When {{ctrl|used}} outside the inventory, it dumps all the items out into the world.

Hovering over the bundle shows its contained items in its inventory slots. The number of bundle slots used is displayed as ''<fullness>''/64 in the tooltip. If the bundle is full, then the empty slots are greyed out with an <span class="invslot">{{SlotSprite|Bundle full}}</span>.

[[Shulker box]]es cannot be placed inside of bundles.

[[File:MinecraftBundle.jpg|thumb|Hovering the mouse over a bundle filled with mob loot, nearly full, with 61 items.]]

== Sounds ==
{{Sound table
|sound=Bundle drop contents1.ogg
|sound2=Bundle drop contents2.ogg
|sound3=Bundle drop contents3.ogg
|subtitle=Bundle empties
|source=player
|description=When a bundle's items are thrown onto the ground
|id=item.bundle.drop_contents
|translationkey=subtitles.item.bundle.drop_contents
|volume=0.8
|pitch=''varies'' <ref group=sound>Can be 0.8-1.2 or 0.76-1.14 for each sound</ref>
|distance=16}}
{{Sound table
|sound=Bundle insert1.ogg
|sound2=Bundle insert2.ogg
|sound3=Bundle insert3.ogg
|subtitle=Item packed
|source=player
|description=When items are placed into a bundle
|id=item.bundle.insert
|translationkey=subtitles.item.bundle.insert
|volume=0.8
|pitch=''varies'' <ref group=sound>Can be 0.8-1.2, 0.76-1.14, or 0.84-1.26 for each sound</ref>
|distance=16}}
{{Sound table
|sound=Bundle remove one1.ogg
|sound2=Bundle remove one2.ogg
|sound3=Bundle remove one3.ogg
|subtitle=Item unpacked
|source=player
|description=When items are removed from a bundle
|id=item.bundle.remove_one
|translationkey=subtitles.item.bundle.remove_one
|volume=0.8
|pitch=''varies' <ref group=sound>Can be 0.8-1.2, 0.84-1.26, or 0.88-1.32 for each sound</ref>
|distance=16
|foot=1}}

== Data values ==
=== ID ===
{{JE}}:
{{ID table
|edition=java
|showforms=y
|generatetranslationkeys=y
|displayname=Bundle
|spritetype=item
|nameid=bundle
|form=item
|foot=1}}

=== Item data ===

<div class="treeview" style="margin-top: 0;">
* {{nbt|compound|tag}}: The '''tag''' tag.
{{:Player.dat_format/Bundle}}
</div>
== History ==
{{History||October 3, 2020|link={{ytl|DBvZ2Iqmm3M|t=1846s}}|[[File:Bundle JE1.png|32px]][[File:Bundle Filled JE1.png|32px]] Bundles are revealed at [[Minecraft Live 2020]]. Hovering over them shows all items inside scattered around a large area, and incomplete bundles have the empty texture.}}
{{History||October 16, 2021|link=https://clips.twitch.tv/AffluentEncouragingOryxPeteZaroll-cd8pIapkfD4PRHxO|Ulraf, a game developer on ''Minecraft'', states that bundles will not be included in [[Caves & Cliffs]].}}
{{History||November 17, 2021|link=https://www.minecraft.net/en-us/article/caves---cliffs-update-part-ii-coming|Bundles are announced to be added after [[The Wild Update]].}}
{{History|java}}
{{History||1.17|snap=20w45a|[[File:Bundle JE1.png|32px]][[File:Bundle Filled JE1.png|32px]] Added bundles. Hovering over them shows some of the items contained and their quantities, much like the tooltip of a [[shulker box]]. Incomplete bundles have the full texture.}}
{{History|||snap=20w46a|[[File:Bundle JE2.png|32px]][[File:Bundle Filled JE2.png|32px]] The textures of bundles have been changed.
|Hovering over bundles now shows its contained items in special slots, similar to slots in the [[inventory]]. If the bundle is not full, it also has an empty slot with a plus on it.}}
{{History|||snap=20w48a|Bundles now show fullness as a number when [[advanced tooltips]] are enabled.
|{{ctrl|Using}} a bundle in the inventory now empties one item from the bundle instead of emptying all the contents out to the [[inventory]].
|{{ctrl|Using}} a bundle now throws out its entire content into the world.}}
{{History|||snap=20w49a|Bundle fullness is now always shown.
|Full bundles now show the blue bar instead of hiding it, to distinguish from empty bundles.}}
{{History|||snap=20w51a|Bundles now drop its contents when destroyed as an [[Item (entity)|item entity]].
|Bundle fullness has been changed from <code>Fullness: ''<fullness>'' / 64</code> to <code>''<fullness>''/64</code>
|The slots in the tooltip when hovering over bundles have changed to have a border, and rows of slot have a thicker edge between them.
|When the bundle is not full, it instead shows empty slots instead of one slot with a plus. When it is full, those empty slots become greyed out with an X.}}
{{History|||snap=21w05a|The player now receives a tutorial when first having a bundle in the inventory.}}
{{History|||snap=21w19a|Bundles are now accessible only through commands.}}
{{History||1.18|snap=Experimental Snapshot 1|Bundles are now available in the creative inventory and can be crafted once again.}}
{{History|||snap=21w37a|Bundles are once again accessible only through commands.}}
{{History||1.19.3|snap=22w42a|Bundles have been made available once again, and have been moved behind their own datapack.}}
{{h|bedrock}} 
{{h||1.19.50|snap=beta 1.19.50.21|Added bundle GUI textures in the Vanilla Packs.}} 
{{History|foot}}

== Issues ==
{{Issue list}}

== Gallery ==
<gallery>
JE 1.17 Development Bundle.png|The original bundle UI
Bundle in Inventory.jpg|A bundle inventory in the inventory
</gallery>

== References ==
{{Reflist}}

{{Items}}

[[Category:Storage]]
[[Category:Tools]]
[[Category:Renewable resources]]

[[de:Bündel]]
[[es:Saco]]
[[fr:Sac]]
[[ja:バンドル]]
[[pl:Sakwa]]
[[pt:Trouxa]]
[[ru:Мешок]]
[[zh:收纳袋]]</li></ul></nowiki>
October 19, 2015Dinnerbone announces loot tables.
15w43aAdded loot tables.
15w43bAdded condition entity_scores.
15w43cRenamed "villager_golem.json" to "iron_golem.json"
Added fishing loot tables, sheep without wool, and zombie and skeleton horses.
Renamed the tag  item: to  name:, and the tag  items: to  entries:
Added the tag  type: and support to load a loot table instead of an item.
Added the tag  luck: to default files, though it currently does nothing in the code.
Added the function set_damage.
15w44aAdded the function enchant_randomly and set_attributes.
15w44bAdded the  quality tag.
Removed  luck and  luck_multiplier tags.
Added the  bonus_rolls tag.
15w51aA player in Spectator mode no longer triggers a container to use its loot table to generate loot.
1.9.1
{{Extension DPL}}<ul><li>[[Steak|Steak]]<br/>{{Item
| title = Steak
| image = Steak.png
| renewable = Yes
| heals = {{hunger|8}}
| stackable = Yes (64)
}}

'''Steak''' ({{in|java}}) or '''cooked beef''' ({{in|bedrock}}) is a [[food]] [[item]] obtained from [[cow]]s, [[mooshroom]]s, or from cooking [[raw beef]].

== Obtaining ==

=== Mob loot ===

==== Cows ====

When a [[cow]] or [[mooshroom]] is killed, it drops [[raw beef]]. If a cow dies while on fire, it drops steak instead. If the cow is killed using a weapon with the [[Looting]] enchantment, the maximum number of steak drops increases by 1 per level.

=== Cooking ===

Raw beef can be cooked in a [[furnace]], [[smoker]], or [[campfire]]. Each steak removed from a furnace output slot gives 0.35 [[experience]] (22.4 experience per stack).
{{Smelting
|Raw Beef
|Steak
|0,35
}}

=== Villager gifts ===
{{IN|java}}, butcher [[Villager|villagers]] may give players steak if they have the [[Hero of the Village]] status effect.

== Usage ==

=== Food ===

To eat steak, press and hold {{control|use}} while it is selected in the hotbar. Eating one restores {{hunger|8}} [[hunger]] and 12.8 hunger 
[[saturation]]. 

=== Wolves ===

Steak 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=Steak
|spritetype=item
|nameid=cooked_beef
|form=item
|foot=1}}

{{edition|bedrock}}:
{{ID table
|edition=bedrock
|shownumericids=y
|showforms=y
|notshowbeitemforms=y
|generatetranslationkeys=y
|displayname=Cooked Beef
|spritetype=item
|nameid=cooked_beef
|id=274
|form=item
|foot=1}}

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

== History ==

{{History|java beta}}
{{History||1.8|snap=Pre-release|[[File:Steak JE1 BE1.png|32px]] Added steak.
|Steak has been introduced as the cooked result of [[raw beef]].
|Steak is a new [[food]] [[item]] dropped by [[cow]]s in addition to their [[leather]]. 
|The icon for steak is used as the image for the [[cooked porkchop]] before [[Java Edition Beta 1.8|Beta 1.8]], as the cooked porkchop's icon was updated to a lighter colored piece of meat.}}
{{History|java}}
{{History||1.2.1|snap=12w03a|Steak can now be used to [[breed]] [[wolves]].}}
{{History||1.3.1|snap=12w21a|Steak can now be [[trading|bought]] from butcher [[villager]]s, at 6–7 steak for 1 [[emerald]].}}
{{History|||snap=1.3|[[File:Steak JE2.png|32px]] The texture of steak has been changed.}}
{{History||1.4.2|snap=12w37a|[[File:Steak JE3 BE2.png|32px]] The texture of steak has been changed, so that it no longer has a dark outline.}}
{{History||1.8|snap=14w02a|[[Villager]]s no longer [[trade]] steak.}}
{{History||1.13|snap=17w47a|Prior to [[1.13/Flattening|''The Flattening'']], this [[item]]'s numeral ID was 364.}}
{{History||1.14|snap=18w43a|[[File:Steak JE4 BE3.png|32px]] The texture of steak has been changed.}}
{{History|||snap=19w13a|Butcher villagers now give steak to players under the [[Hero of the Village]] effect.}}

{{History|pocket alpha}}
{{History||v0.4.0|[[File:Steak JE1 BE1.png|32px]] Added steak.}}
{{History||v0.5.0|Steak now restores {{hp|8}} instead of {{hp|4}}.}}
{{History||v0.8.0|snap=build 1|[[File:Steak JE3 BE2.png|32px]] The texture of steak has been changed, so that it no longer has a dark outline.}}
{{History||v0.12.1|snap=build 1|Steak now restores [[hunger]] instead of [[health]].}}
{{History||v0.16.0|snap=build 4|"Steak" has been renamed to "Cooked Beef."}}
{{History|bedrock}}
{{History||1.10.0|snap=beta 1.10.0.3|[[File:Steak JE4 BE3.png|32px]] The texture of cooked beef has been changed.}}
{{History||1.11.0|snap=beta 1.11.0.4|Cooked beef can now be [[trading|bought]] from butcher [[villager]]s.}}

{{History|console}}
{{History||xbox=TU5|xbone=CU1|ps=1.0|wiiu=Patch 1|switch=1.0.1|[[File:Steak JE1 BE1.png|32px]] Added steak.}}
{{History||xbox=TU12|[[File:Steak JE3 BE2.png|32px]] The steak's texture has been changed, so that it no longer has a dark outline.}}
{{History||xbox=none|xbone=none|ps=1.90|wiiu=none|switch=none|[[File:Steak JE4 BE3.png|32px]] The texture of steak has been changed.}}

{{History|new3DS}}
{{History||0.1.0|[[File:Steak JE3 BE2.png|32px]] Added steak.}}
{{History|foot}}

== Issues ==
{{issue list}}

== Gallery ==
<gallery>
Jeb steak.png|Raw beef and steak shown in the [[inventory]] from a preview screenshot.
Eating Steak.png|A still frame of the player eating a steak.
Steak SDGP.png|Steak in the [[Super Duper Graphics Pack]].
</gallery>

== Notes ==
{{fnlist}}

{{Items}}

[[cs:Propečený steak]]
[[de:Steak]]
[[es:Filete asado]]
[[fr:Steak]]
[[hu:Steak]]
[[it:Bistecca]]
[[ja:ステーキ]]
[[ko:스테이크]]
[[nl:Biefstuk]]
[[pl:Befsztyk]]
[[pt:Filé]]
[[ru:Жареная говядина]]
[[tr:Biftek]]
[[uk:Стейк]]
[[zh:牛排]]
[[Category:Food]]
[[Category:Renewable resources]]</li><li>[[Cauldron|Cauldron]]<br/>{{For|the boss in ''Minecraft Dungeons''|MCD:Corrupted Cauldron}}
{{Block
| extratext = View [[#Renders|all renders]]
| transparent = Yes
| light = Depends on contained liquid
| tool = wooden pickaxe
| renewable = Yes
| stackable = Yes (64)
| flammable = No
| lavasusceptible = No
}}

A '''cauldron''' is a [[block]] that can contain [[water]], [[lava]] or [[powder snow]] and, in certain situations, collect it from the environment. {{IN|bedrock}}, it can also hold [[potion]]s or dyed water. It also serves as a [[leatherworker]]'s [[job site block]].

== Obtaining ==
=== Breaking ===

A cauldron can be obtained using any [[pickaxe]]. If mined without a pickaxe, it drops nothing. Regardless of the tool, when a cauldron is destroyed, its contents are lost.
{{breaking row|horizontal=1|Cauldron|Pickaxe|Wood}}

=== Natural generation ===

[[File:Natural Cauldron Table.png|A naturally occurring cauldron inside of a [[witch hut]].|thumb]]

A single empty cauldron is generated in each [[swamp hut]]. {{IN|be}}, the cauldrons generated there are {{frac|1|3}} to {{frac|2|3}} full of a random [[potion]].

A cauldron {{frac|2|3}} full of water is generated in each [[igloo]] basement.
[[File:MansionJailInner.png|thumb|Cauldron in [[woodland mansion]] jail.]]
Cauldrons can be found in a few rooms inside of [[woodland mansion]]s.

Two filled cauldrons can be found inside savanna, taiga, snowy taiga, and snowy tundra [[village]] tannery houses.

A single filled cauldron can be found in plains village and desert village tannery houses.

{{IN|java}}, three filled cauldrons can be found in plains village tannery houses.

Cauldrons can also spawn in [[trail ruins]].

=== Crafting ===

A cauldron can be crafted from [[iron ingot]]s.
{{Crafting
|A1= Iron Ingot
|C1= Iron Ingot
|A2= Iron Ingot
|C2= Iron Ingot
|A3= Iron Ingot
|B3= Iron Ingot
|C3= Iron Ingot
|Output= Cauldron
|type= Brewing
}}

== Usage ==

=== Storage for substances ===
Cauldrons can hold a variety of substances. Fluids they cannot hold include [[milk]], [[Honey Bottle|honey]] and any food items that exist in [[bowl]]s; namely [[mushroom stew]], [[beetroot soup]], [[rabbit stew]] and [[suspicious stew]]. {{IN|java}}, cauldrons containing fluids are considered by the game to be separate blocks from each other and from empty cauldrons, which does not affect gameplay but does affect the commands needed to place them.

==== Holding water ====
A cauldron can be filled with [[water]] by {{control|using}} a [[water bucket]] on the cauldron. Once completely filled, a cauldron can be used to fill a water bucket by {{control|using}} an empty [[bucket]] on the cauldron; this empties the cauldron. Despite containing water, using a [[fish bucket]] on a cauldron does not fill it with water, but places water against it, meaning it does nothing to the cauldron.<ref>{{bug|MC-129109|||WAI}}</ref>

A cauldron can also be filled by dumping a water bucket on the block above the cauldron. Once the water block is removed, the cauldron is filled to the full level with water.{{only|be}}

It can contain three levels of water. One level of water can be added to a cauldron by {{control|using}} a [[water bottle]] on it. One level of water can be removed from a cauldron, filling a water bottle, by {{control|using}} a [[glass bottle]] on it.

A cauldron slowly fills with [[water]] when [[rain]]ed upon, if starting empty or with some water. This happens randomly, at 5% of the rate in which snow accumulates on the ground during [[snowfall]].

Water can be stored in a cauldron even in [[the Nether]]. Water in a cauldron does not freeze in cold biomes.

Water in a cauldron does ''not'' absorb [[explosion]] damage; make [[sound]]s and [[particle]]s; absorb fall damage;<ref>{{bug|MC-176867|||WF}}</ref><ref>{{bug|MCPE-104572|||WF}}</ref> allow [[Riptide]] [[trident]]s to activate;<ref>{{bug|MC-145311|||WF}}</ref><ref>{{bug|MCPE-93111}}</ref> or damage [[endermen]], [[strider]]s, or [[blaze]]s.<ref>{{bug|MC-106813|||WF}}</ref> Cauldrons do ''not'' deal drowning damage to mobs inside of them<ref>{{bug|MC-152680}}</ref> and [[fish]] act as if there is no water inside it.<ref>{{bug|MC-126819|||WF}}</ref> The player ''cannot'' float or [[swim]] in it, as the water is about level with the player's waist. Jumping in a cauldron does ''not'' produce any bubble or water particles.

A cauldron placed below a down-facing [[pointed dripstone]] that has water placed a block above it slowly fills with water. The same works with [[lava]], allowing for infinite lava generation.

Attempting to add lava or potion to water empties the cauldron.{{only|be}} 


The water in a cauldron cannot be sucked up by a [[sponge]], whether the sponge is touching the cauldron or not. 

===== Applying dye to cauldron water =====
{{exclusive|bedrock|section=yes}}

{{IN|bedrock}}, leather armor is dyed through a cauldron, so a cauldron can hold dyed [[water]]. {{control|Using}} a dye on a cauldron filled with water colors the water, consuming the dye. Different dyes may be added to produce mixed colors. {{control|Using}} [[leather armor]] or [[leather horse armor]] on the cauldron dyes that item the color of the water, reducing the water in the cauldron by one level for each item dyed.

Attempting to add water, lava or potion to dyed water empties the cauldron.

==== Holding lava ====
[[File:Lava Cauldron.png|150px|thumb|Cauldron filled with lava]]

Cauldrons can be used to hold lava. {{IN|be|ee}}, when a cauldron is already filled with water, it empties the cauldron and makes an extinguishing sound. A cauldron filled with lava emits a light level of 15, similar to lava, and burns any [[entity]] inside of it; {{in|be|ee|short=1}}, this includes mobs that do not take damage from lava like [[zombified piglin]]s.

Lava inside a cauldron does not interact with water outside of the cauldron. The lava disappears upon putting water in the cauldron.

A [[redstone comparator]] with a lava cauldron behind it outputs redstone signal strength of 3.<ref name=JavaLava>{{bug|MC-204393}}</ref><ref>{{bug|MCPE-104824}}</ref>

A cauldron placed below a down-facing [[pointed dripstone]] that has lava placed a block above it slowly fills with lava.

If a cauldron is filled by lava, using glass bottles on the cauldron does nothing.

==== Holding powder snow ====
[[Powder snow]] is currently the only solid material that can be stored in a cauldron. A cauldron slowly fills with powder snow during [[snowfall]], if starting empty or with any layer of powder snow already inside. Up to three layers can be filled. When the cauldron is full, {{ctrl|interacting}} using a [[bucket]], creates a [[powder snow bucket]] and empties the cauldron. Entities standing in the cauldron do not take freeze damage, and entities wearing [[leather boots]] still fall through the powder snow.

A [[redstone comparator]] with a powder snow cauldron behind it outputs a redstone signal strength proportional to the fill level, up to 3.

Contrary to a cauldron filled with water, a powder snow cauldron that is not full cannot be filled up with a powder snow bucket, as {{control|using}} the bucket on the cauldron instead places powder snow against it.

==== Filling cauldrons with potions ====
{{exclusive|bedrock|education|section=yes}}

{{IN|bedrock}}, a cauldron can hold normal [[potion]]s, [[splash potion]]s and [[lingering potion]]s. {{control|Using}} a potion on a cauldron empties the potion and increases the level of the potion in the cauldron by one level. A glass bottle can then be {{control|used}} on a cauldron with a potion in it, filling the bottle with that potion. This reduces the potion in the cauldron by one level.

{{control|Using}} an [[arrow]] on a cauldron that contains a potion transforms the arrow into a [[tipped arrow]] with that potion [[effect]], and reduce the potion in the cauldron by one level. Tipping multiple arrows at once can be more efficient, and it may use more than one level at once. 1 level of potion tips up to 16 arrows, 2 levels up to 32, and a full cauldron can tip a full stack of arrows, resulting in 21.33 tipped arrows per potion.

Attempting to put [[water]], [[lava]] or a different potion into a cauldron with a potion causes an explosion sound, and the cauldron is emptied.

An entity that stands in a cauldron filled to any level with any potion does not receive the effect of the potion.

Using an empty bucket on a cauldron filled with any potion does nothing, as the bucket remains empty and the potion in the cauldron does not empty.

=== Removing dye from items ===

A cauldron with [[water]] can wash the dye off of leather [[armor]] and [[shulker box]]es, and can remove the top-most pattern layer of a [[banner]], by pressing {{control|use}} on the cauldron with the leather armor, shulker box, or banner in hand. Each wash reduces the water in the cauldron by one level. The water does not become dyed while removing dye from objects.

=== Changing profession ===
If a [[village]] has a cauldron that has not been claimed by a [[villager]], any villager that does not already have a profession or [[job site]] block may change their profession to [[leatherworker]].

=== Extinguishing fire ===

A cauldron with [[water]] or [[powder snow]] extinguishes [[entities]] on [[fire]] that fall into it and the entity emits black particles. This includes [[mob]]s, [[player]]s, [[item]]s (if they land in the cauldron before burning up), and flaming [[arrow]]s{{only|je|short=1}}. Flaming arrows stuck into the side are also extinguished. Entities must reach the water or powder snow in it. Each entity extinguished causes the substance in the cauldron to decrease by one level. If the cauldron is filled with powder snow, it then becomes a water cauldron.

=== Redstone component ===
[[File:Cauldron transmission over piston.png|An example of a cauldron used in a [[redstone]] circuit.|thumb]]
{{see also|Redstone circuit}}

A cauldron can act as a power source for a [[redstone comparator]]. With a cauldron behind it (either directly, or separated by an unpowered solid block), a comparator outputs a signal strength proportional to how full the cauldron is: 0 for empty, 1 for one-third full, 2 for two-thirds full, and 3 for completely full or filled with lava. However, if there is a block between the cauldron and the comparator, the comparator does not immediately update.

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

=== Unique ===
{{edition|java}}:
{{Sound table
|sound=Pointed Dripstone drip water cauldron1.ogg
|sound2=Pointed Dripstone drip water cauldron2.ogg
|sound3=Pointed Dripstone drip water cauldron3.ogg
|sound4=Pointed Dripstone drip water cauldron4.ogg
|sound5=Pointed Dripstone drip water cauldron5.ogg
|sound6=Pointed Dripstone drip water cauldron6.ogg
|sound7=Pointed Dripstone drip water cauldron7.ogg
|sound8=Pointed Dripstone drip water cauldron8.ogg
|subtitle=Water drips
|source=block
|description=When dripping water from a pointed dripstone falls into a cauldron
|id=block.pointed_dripstone.drip_water_into_cauldron
|translationkey=subtitles.block.pointed_dripstone.drip_water_into_cauldron
|volume=2.0
|pitch=0.9-1.0
|distance=16}}
{{Sound table
|sound=Pointed Dripstone drip lava cauldron1.ogg
|sound2=Pointed Dripstone drip lava cauldron2.ogg
|sound3=Pointed Dripstone drip lava cauldron3.ogg
|sound4=Pointed Dripstone drip lava cauldron4.ogg
|subtitle=Lava drips
|source=block
|description=When dripping lava from a pointed dripstone falls into a cauldron
|id=block.pointed_dripstone.drip_lava_into_cauldron
|translationkey=subtitles.block.pointed_dripstone.drip_lava_into_cauldron
|volume=2.0
|pitch=0.9-1.0
|distance=16}}
{{Sound table
|sound=Empty water bucket1.ogg
|sound2=Empty water bucket1.ogg
|sound3=Empty water bucket2.ogg
|sound4=Empty water bucket3.ogg
|subtitle=Bucket empties
|source=block
|description=When water from a bucket is placed in a cauldron <ref group=sound><code>empty1</code> plays twice as often as the other sounds</ref>
|id=item.bucket.empty
|translationkey=subtitles.item.bucket.empty
|volume=1.0
|pitch=1.0 <ref group=sound>Except for the second copy of <code>empty1</code>, which is 0.9</ref>
|distance=16}}
{{Sound table
|sound=Fill water bucket1.ogg
|sound2=Fill water bucket2.ogg
|sound3=Fill water bucket3.ogg
|subtitle=Bucket fills
|source=block
|description=When water from a bucket is removed from a cauldron
|id=item.bucket.fill
|translationkey=subtitles.item.bucket.fill
|volume=1.0
|pitch=1.0
|distance=16}}
{{Sound table
|sound=Empty lava bucket1.ogg
|sound2=Empty lava bucket2.ogg
|sound3=Empty lava bucket3.ogg
|subtitle=Bucket empties
|source=block
|description=When lava is placed in a cauldron
|id=item.bucket.empty_lava
|translationkey=subtitles.item.bucket.empty
|volume=1.0
|pitch=1.0
|distance=16}}
{{Sound table
|sound=Fill lava bucket1.ogg
|sound2=Fill lava bucket2.ogg
|sound3=Fill lava bucket3.ogg
|subtitle=Bucket fills
|source=block
|description=When lava is removed from a cauldron
|id=item.bucket.fill_lava
|translationkey=subtitles.item.bucket.fill
|volume=1.0
|pitch=1.0
|distance=16}}
{{Sound table
|sound=Empty powder snow bucket1.ogg
|sound2=Empty powder snow bucket2.ogg
|subtitle=Bucket empties
|source=block
|description=When powder snow is placed in a cauldron
|id=item.bucket.empty_powder_snow
|translationkey=subtitles.item.bucket.empty
|volume=1.0
|pitch=''varies'' <ref group=sound>Can be 1.0, 0.95, or 1.1 for each sound</ref>
|distance=16}}
{{Sound table
|sound=Fill powder snow bucket1.ogg
|sound2=Fill powder snow bucket2.ogg
|subtitle=Bucket fills
|source=block
|description=When powder snow is removed from a cauldron
|id=item.bucket.fill_powder_snow
|translationkey=subtitles.item.bucket.fill
|volume=1.0
|pitch=''varies'' <ref group=sound>Can be 1.0, 0.9, or 1.1 for each sound</ref>
|distance=16}}
{{Sound table
|sound=Bottle empty1.ogg
|sound2=Bottle empty2.ogg
|subtitle=Bottle empties
|source=block
|description=When water from a bottle is placed in a cauldron
|id=item.bottle.empty
|translationkey=subtitles.item.bottle.empty
|volume=1.0
|pitch=1.0
|distance=16}}
{{Sound table
|sound=Bottle fill_water1.ogg
|sound2=Bottle fill_water2.ogg
|sound3=Bottle fill_water3.ogg
|sound4=Bottle fill_water4.ogg
|subtitle=Bottle fills
|source=block
|description=When water from a bottle is removed from a cauldron
|id=item.bottle.fill
|translationkey=subtitles.item.bottle.fill
|volume=1.0
|pitch=1.0
|distance=16}}
{{Sound table
|sound=Empty water bucket1.ogg
|sound2=Empty water bucket2.ogg
|sound3=Empty water bucket3.ogg
|subtitle=Leatherworker works
|source=neutral
|description=Randomly while a leatherworker is working
|id=entity.villager.work_leatherworker
|translationkey=subtitles.entity.villager.work_leatherworker
|volume=0.9
|pitch=0.8-1.2
|distance=16
|foot=1}}

{{edition|bedrock}}:
{{Sound table
|type=bedrock
|sound=Pointed Dripstone drip water cauldron1.ogg
|sound2=Pointed Dripstone drip water cauldron2.ogg
|sound3=Pointed Dripstone drip water cauldron3.ogg
|sound4=Pointed Dripstone drip water cauldron4.ogg
|sound5=Pointed Dripstone drip water cauldron5.ogg
|sound6=Pointed Dripstone drip water cauldron6.ogg
|sound7=Pointed Dripstone drip water cauldron7.ogg
|sound8=Pointed Dripstone drip water cauldron8.ogg
|source=block
|description=When dripping water from a pointed dripstone falls into a cauldron
|id=cauldron_drip.water<br>.pointed_dripstone
|volume=2.0
|pitch=0.9-1.0}}
{{Sound table
|sound=Pointed Dripstone drip lava cauldron1.ogg
|sound2=Pointed Dripstone drip lava cauldron2.ogg
|sound3=Pointed Dripstone drip lava cauldron3.ogg
|sound4=Pointed Dripstone drip lava cauldron4.ogg
|source=block
|description=When dripping lava from a pointed dripstone falls into a cauldron
|id=cauldron_drip.lava<br>.pointed_dripstone
|volume=2.0
|pitch=0.9-1.0}}
{{Sound table
|sound=Fizz.ogg
|source=block
|description=When a different liquid is put in a cauldron with a potion
|id=random.fizz
|volume=1.0
|pitch=0.6-0.8<wbr>{{Checkthecode}}[[Category:Pages with inaccurate sound pitch value]]}}
{{Sound table
|rowspan=8
|sound=Water Splash Old.ogg
|source=block
|description=When dye is added to a cauldron
|id=cauldron.adddye
|volume=0.1
|pitch=1.0}}
{{Sound table
|source=block
|description=When armor is dyed using a cauldron
|id=cauldron.dyearmor
|volume=0.1
|pitch=1.0}}
{{Sound table
|source=block
|description=When dye is removed from armor using a cauldron
|id=cauldron.cleanarmor
|volume=0.1
|pitch=1.0}}
{{Sound table
|source=block
|description=When all patterns are removed from a banner using a cauldron
|id=cauldron.cleanbanner
|volume=0.1
|pitch=1.0}}
{{Sound table
|source=block
|description=When a potion is placed in a cauldron<wbr><ref group=sound name=potionsplash>{{Bug|MCPE-174867}}</ref>
|id=cauldron.fillpotion
|volume=0.1
|pitch=1.0}}
{{Sound table
|source=block
|description=When a potion is taken from a cauldron<wbr><ref group=sound name=potionsplash/>
|id=cauldron.takepotion
|volume=0.1
|pitch=1.0}}
{{Sound table
|source=block
|description=When water from a bucket or bottle is placed in a cauldron<wbr><ref group=sound name=bucketsplash>{{Bug|MCPE-135919}}</ref>
|id=cauldron.fillwater
|volume=0.1
|pitch=1.0}}
{{Sound table
|source=block
|description=When water from a bucket or bottle is removed from a cauldron <ref group=sound name=bucketsplash/>
|id=cauldron.takewater
|volume=0.1
|pitch=1.0}}
{{Sound table
|sound=Empty lava bucket1.ogg
|sound2=Empty lava bucket2.ogg
|sound3=Empty lava bucket3.ogg
|source=block
|description=When lava is placed in a cauldron
|id=bucket.empty_lava
|volume=1.0
|pitch=1.0}}
{{Sound table
|sound=Fill lava bucket1.ogg
|sound2=Fill lava bucket2.ogg
|sound3=Fill lava bucket3.ogg
|source=block
|description=When lava is removed from a cauldron
|id=bucket.fill_lava
|volume=1.0
|pitch=1.0}}
{{Sound table
|sound=Empty powder snow bucket1.ogg
|sound2=Empty powder snow bucket2.ogg
|source=block
|description=When powder snow is placed in a cauldron
|id=bucket.empty_powder_snow
|volume=1.0
|pitch=1.0}}
{{Sound table
|sound=Fill powder snow bucket1.ogg
|sound2=Fill powder snow bucket2.ogg
|source=player
|description=When powder snow is removed from a cauldron
|id=bucket.fill_powder_snow
|volume=1.0
|pitch=1.0}}
{{Sound table
|sound=Empty water bucket1.ogg
|sound2=Empty water bucket2.ogg
|sound3=Empty water bucket3.ogg
|source=block
|description=Randomly while a leatherworker is working
|id=bucket.fill_water
|volume=1.0
|pitch=1.0
|foot=1}}

== Data values ==
=== ID ===
{{edition|java}}:
{{ID table
|edition=java
|showblocktags=y
|showforms=y
|generatetranslationkeys=y
|displayname=Cauldron
|spritetype=block
|nameid=cauldron
|blocktags=cauldrons
|translationkey=block.minecraft.cauldron,item.minecraft.cauldron}}
{{ID table
|displayname=Lava Cauldron
|spritename=cauldron
|spritetype=block
|nameid=lava_cauldron
|blocktags=cauldrons
|form=block}}
{{ID table
|displayname=Powder Snow Cauldron
|spritename=cauldron
|spritetype=block
|nameid=powder_snow_cauldron
|blocktags=cauldrons
|form=block}}
{{ID table
|displayname=Water Cauldron
|spritename=cauldron
|spritetype=block
|nameid=water_cauldron
|blocktags=cauldrons
|form=block
|foot=1}}

{{edition|bedrock}}:
{{ID table
|edition=bedrock
|firstcolumnname=Type
|shownumericids=y
|showforms=y
|generatetranslationkeys=y
|displayname=Normal block
|spritename=cauldron
|spritetype=block
|nameid=cauldron
|id=118
|form=block
|itemform=item.cauldron}}
{{ID table
|displayname=Brighting block
|spritename=cauldron
|spritetype=block
|nameid=lava_cauldron
|id=465
|form=block
|translationkey=-}}
{{ID table
|displayname=Item
|spritename=cauldron
|spritetype=item
|nameid=cauldron
|id=432
|form=item
|foot=1}}
{{ID table
|notnamespaced=y
|displayname=Block entity
|spritename=cauldron
|spritetype=block
|nameid=Cauldron
|foot=1}}

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

=== Block data ===

{{IN|be}}, a cauldron has a block entity associated with it that holds additional data about the block.

See [[Bedrock Edition level format/Block entity format]].

== Achievements ==
{{load achievements|Tie Dye Outfit}}

== History ==

{{History|java}}
{{History||1.0.0|snap=Beta 1.9 Prerelease 2|[[File:Cauldron JE1.png|32px]] Cauldrons are present in the code, but are not assigned to a [[block]] ID (and thus are unobtainable without [http://www.minecraftforum.net/topic/673742-19-pre2-cauldron-block/ mods] (archived link: [https://web.archive.org/web/20141222205821/https://dl.dropboxusercontent.com/u/19728555/cauldron.zip])).}}
{{History|||snap=Beta 1.9 Prerelease 3|[[File:Cauldron (item) JE1 BE1.png|32px]] Cauldrons have been given a [[block]] ID, an [[item]] ID, and a [[crafting]] recipe.}}
{{History||1.2.1|snap=12w06a|Cauldrons have now become [[renewable]], due to [[zombie]]s sometimes dropping iron ingots.}}
{{History||1.4.2|snap=12w40a|Empty cauldrons can now be found in [[witch hut]]s.}}
{{History||1.5|snap=13w02a|[[File:Cauldron JE2.png|32px]] The walls inside of the cauldron now use the bottom texture, and the cauldron now has no bottom.<ref name="whatdoyouputinacauldrontomakeitlighter">{{bug|MC-6772}}</ref>}}
{{History|||snap=13w02b|[[File:Cauldron JE1.png|32px]] Fixed the model error from 13w02a.}}
{{History||1.8|snap=14w03a|[[File:Cauldron JE4.png|32px]] Cauldrons now appear completely opaque.<ref>{{bug|MC-44990}}</ref>}}
{{History|||snap=14w03b|[[File:Cauldron JE1.png|32px]] Cauldrons now render as normal again.}}
{{History|||snap=14w06a|Cauldrons now have extra planes inside the feet. These planes are now rendered solid, so the [[player]] cannot see through the [[water]].{{info needed|what exactly does this mean?}}}}
{{History|||snap=14w10a|[[File:Cauldron JE6.png|32px]] The cauldron's feet now have planes on all sides.}}
{{History||1.11|snap=16w39a|Cauldrons now generate naturally in jail cells in [[woodland mansion]]s.}}
{{History||July 19, 2017|link=https://twitter.com/jeb_/status/887599625045250048|[[Jeb]] tweets image of a new jungle [[planks]], cauldron and [[dandelion]] textures.}}
{{History||1.13|snap=17w47a|Prior to [[1.13/Flattening|''The Flattening'']], this [[block]]'s numeral ID was 118, and the [[item]]'s was 380.}}
{{History||1.14|snap=18w43a|[[File:Cauldron JE7.png|32px]]<br/>[[File:Cauldron (item) JE2 BE2.png|32px]] The textures of cauldrons have been changed.}}
{{History|||snap=18w48a|Cauldrons now generate in the updated [[plains]] [[village]]s.}}
{{History|||snap=18w49a|Cauldrons now generate in the updated [[savanna]] villages and the new [[snowy tundra]] villages.}}
{{History|||snap=18w50a|Cauldrons now generate in the updated [[desert]] and [[taiga]] villages.}}
{{History|||snap=19w03a|The numerous missing cullface arguments for the cauldron have been fixed.}}
{{History|||snap=19w11a|Cauldrons now serve as leatherworker [[villager]]s' job site block.}}
{{History|||snap=19w13a|The cauldron's hitbox has been fixed.<ref>{{bug|MC-129205}}</ref>}}
{{History||1.17|snap=20w45a|Normal and water cauldrons have been split into different blocks, making filled cauldrons no longer work as a workstation for villagers.<ref name="technicalunemployment">{{bug|MC-204430}}</ref>
|This also means that any [[structure]]s before this snapshot that have cauldron(s) fill with water now no longer generate(s) cauldron. Instead, water cauldron(s) will generate.}}
{{History|||snap=20w48a|Cauldrons can now collect water and lava dripped by [[pointed dripstone]].}}
{{History|||snap=21w11a|[[Lava bucket]]s and [[powder snow bucket]]s can now be emptied into any filled cauldron.}}
{{History|||snap=21w13a|Filled cauldrons work again as a workstation for villagers.}}
{{History||1.20|snap=23w12a|Cauldrons now generate in [[trail ruins]].}}

{{History|pocket alpha}}
{{History||v0.14.0|snap=build 1|[[File:Cauldron BE1.png|32px]]<br/>[[File:Cauldron (item) JE1 BE1.png|32px]] Added cauldrons.
|Cauldrons are generated naturally in [[witch hut]]s.}}
{{History||v0.15.0|snap=build 1|Cauldrons can now be moved by [[piston]]s.}}
{{History|pocket}}
{{History||1.1.0|snap=alpha 1.1.0.0|Cauldrons now generate naturally in [[woodland mansion]]s, their fullness status is unknown.}}
{{History|bedrock}}
{{History||1.10.0|snap=beta 1.10.0.3|[[File:Cauldron BE2.png|32px]] The textures of cauldrons have been changed.
|Cauldrons now generate in tannery houses in [[village]]s.}}
{{History||?|[[File:Cauldron JE7.png|32px]] The textures of cauldrons have been changed.}}

{{History|console}}
{{History||xbox=TU7|xbone=CU1|ps=1.0|wiiu=Patch 1|switch=1.0.1|[[File:Cauldron JE1.png|32px]]{{verify|Was this the actually used model?}}[[File:Cauldron (item) JE1 BE1.png|32px]] Added cauldrons.}}
{{History||xbox=TU60|xbone=CU51|ps=1.64|wiiu=Patch 30|switch=1.0.11|[[Water]] in a cauldron can now be [[dye]]d.
|[[Armor]] can be dyed in a cauldron filled with dyed water.
|Cauldrons can no longer be pushed by [[piston]]s.}}
{{History||xbox=none|xbone=none|ps=1.90|wiiu=none|switch=none|[[File:Cauldron JE7.png|32px]]{{verify|Was this the actually used model?}}<br/>[[File:Cauldron (item) JE2 BE2.png|32px]] The textures of cauldrons have been changed.}}

{{History|new 3ds}}
{{History||0.1.0|[[File:Cauldron BE1.png|32px]]<br/>[[File:Cauldron (item) JE1 BE1.png|32px]] Added cauldrons.}}
{{History|foot}}

=== Water cauldron ===
{{History|java}}
{{History||1.0.0|snap=Beta 1.9 Prerelease 2|[[File:Water Cauldron (level 1) JE1.png|32px]] [[File:Water Cauldron (level 2) JE1.png|32px]] [[File:Water Cauldron JE1.png|32px]] If made to work with a mod, cauldrons can be filled with a [[water bucket]].
|Cauldron water transparency appears inconsistent depending on hardware.}}
{{History||1.3.1|snap=12w22a|Cauldrons can now be filled with [[water]], if placed outside during [[rain]] or a [[thunderstorm]].}}
{{History||1.4.2|snap=12w34a|Holding a piece of [[Dyeing|dyed]] leather [[armor]] and right-clicking a [[water]]-filled cauldron now washes away all [[dye]]s applied to the leather armor.}}
{{History||1.5|snap=13w02a|[[File:Water Cauldron (level 1) JE2.png|32px]] [[File:Water Cauldron (level 2) JE2.png|32px]] [[File:Water Cauldron JE2.png|32px]] The walls inside of the cauldron now use the bottom texture, and the cauldron now has no bottom.<ref name="whatdoyouputinacauldrontomakeitlighter"/>}}
{{History|||snap=13w02b|[[File:Water Cauldron (level 1) JE1.png|32px]] [[File:Water Cauldron (level 2) JE1.png|32px]] [[File:Water Cauldron JE1.png|32px]] Fixed the model error from 13w02a.}}
{{History||1.6.1|snap=13w18a|When used with a [[redstone comparator]], cauldrons now output a signal varying in strength according to the amount of water inside.}}
{{History||1.7.2|snap=13w43a|Cauldrons now extinguish burning [[entity|entities]].}}
{{History||1.8|snap=14w10a|[[File:Water Cauldron (level 1) JE4.png|32px]] [[File:Water Cauldron (level 2) JE4.png|32px]] [[File:Water Cauldron JE4.png|32px]] The cauldron's feet now have planes on all sides.}}
{{History|||snap=14w30a|Right-clicking a non-empty cauldron with a [[banner]] now removes the top-most pattern layer.}}
{{History||1.9|snap=15w43a|A cauldron now generates within [[igloo]] basements, {{frac|2|3}} full.}}
{{History|||snap=15w44a|A full cauldron can now be emptied with a [[bucket]], filling the bucket with [[water]].}}
{{History||1.11|snap=16w32a|When a cauldron washes a dyed item (leather [[armor]] or [[banner]]), it reduces its water level by 1.}}
{{History|||snap=16w33a|A [[water bottle]] is now able to add 1 [[water]] level to a cauldron.}}
{{History||1.13|snap=18w10d|[[Shulker box]]es can now be undyed in a cauldron.}}
{{History|||snap=18w15a|[[File:Water Cauldron (level 1) JE5.png|32px]] [[File:Water Cauldron (level 2) JE5.png|32px]] [[File:Water Cauldron JE5.png|32px]] [[Water]] in cauldrons is now white colored.<ref>{{bug|MC-128253}}</ref>}}
{{History|||snap=18w20b|[[File:Water Cauldron (level 1) JE6.png|32px]] [[File:Water Cauldron (level 2) JE6.png|32px]] [[File:Water Cauldron JE6.png|32px]] Cauldron water is now colored again, depending on the biome.
|[[File:Swamp Water Cauldron JE1.png|32px]] [[File:Warm Ocean Water Cauldron JE1.png|32px]] [[File:Lukewarm Ocean Water Cauldron JE1.png|32px]] [[File:Cold Ocean Water Cauldron JE1.png|32px]] [[File:Frozen Ocean Water Cauldron JE1.png|32px]] This currently affects ocean temperature variants and swamps.
|[[File:Swamp Hills Water Cauldron JE1.png|32px]] Swampland M water has a yellowish color while in a cauldron.<ref>{{bug|MC-128558}}</ref>}}
{{History|||snap=pre3|[[File:Swamp Water Cauldron JE1.png|32px]] Swampland M water now has the same [[water]] color in cauldrons as regular [[swamp]]s.}}
{{History||1.14|snap=18w43a|[[File:Water Cauldron (level 1) JE7.png|32px]] [[File:Water Cauldron (level 2) JE7.png|32px]] [[File:Water Cauldron JE7.png|32px]]<br>[[File:Swamp Water Cauldron JE2.png|32px]] [[File:Warm Ocean Water Cauldron JE2.png|32px]] [[File:Lukewarm Ocean Water Cauldron JE2.png|32px]] [[File:Cold Ocean Water Cauldron JE2.png|32px]] [[File:Frozen Ocean Water Cauldron JE2.png|32px]] The textures of cauldrons have been changed.}}
{{History|||snap=19w03a|The numerous missing cullface arguments for the water cauldron have been fixed.}}
{{History||1.17|snap=20w45a|Normal and water cauldrons have been split into different blocks, making filled cauldrons no longer work as a workstation for villagers.<ref name="technicalunemployment"/>
|This also means that any [[structure]]s before this snapshot that have cauldron(s) fill with water now no longer generate(s) cauldron. Instead, water cauldron(s) will generate.}}
{{History|||snap=21w13a|Filled cauldrons work again as a workstation for villagers.}}
{{History|pocket alpha}}
{{History||v0.14.0|snap=build 1|[[File:Water Cauldron (level 1) BE1.png|32px]] [[File:Water Cauldron (level 2) BE1.png|32px]] [[File:Water Cauldron BE1.png|32px]] Added water cauldrons.
|[[Water]] color in cauldrons can be changed by adding [[dye]]s. [[Item]]s dipped in the water are dyed that color.}}
{{History||v0.15.0|snap=build 1|Cauldrons are now used to dye leather [[horse armor]].
|Water cauldrons can now be moved by [[piston]]s.}}
{{History|pocket}}
{{History||1.0.0|snap=alpha 0.17.0.1|Cauldrons now generate naturally in [[igloo]] basements.
|Cauldrons now extinguish burning [[entity|entities]].}}
{{History|bedrock}}
{{History||1.10.0|snap=beta 1.10.0.3|[[File:Water Cauldron (level 1) BE2.png|32px]] [[File:Water Cauldron (level 2) BE2.png|32px]] [[File:Water Cauldron BE2.png|32px]] The textures of cauldrons have been changed.}}
{{History||1.20.0|snap=beta 1.20.0.20|[[File:Water Cauldron (level 1) MCPE-170427.png|32px]] [[File:Water Cauldron (level 2) MCPE-170427.png|32px]] [[File:Water Cauldron MCPE-170427.png|32px]] [[Water]] in cauldrons now looks like lava.<ref>{{bug|MCPE-170427}}</ref>}}
{{History||1.20.10|snap=beta 1.20.10.20|[[File:Water Cauldron (level 1) BE2.png|32px]] [[File:Water Cauldron (level 2) BE2.png|32px]] [[File:Water Cauldron BE2.png|32px]] Cauldron water now uses the correct texture.}}
{{History|console}}
{{History||xbox=TU7|xbone=CU1|ps=1.0|wiiu=Patch 1|switch=1.0.1|[[File:Water Cauldron (level 1) JE1.png|32px]] [[File:Water Cauldron (level 2) JE1.png|32px]] [[File:Water Cauldron JE1.png|32px]]{{verify|Were these the models used?}} Added water cauldrons.}}
{{History||xbox=TU12|[[Water]] is no longer removed from a [[water bucket]] when filling a cauldron in [[creative]] mode.}}
{{History||xbox=TU14|ps=1.04|Cauldrons fill with water if placed outside during [[rain]] or a [[thunderstorm]].}}
{{History||xbox=TU31|xbone=CU19|ps=1.22|wiiu=Patch 3|Cauldrons with [[water]] in them extinguish burning [[entity|entities]], taking away one water level each time.}}
{{History|new 3ds}}
{{History||0.1.0|[[File:Water Cauldron (level 1) BE1.png|32px]] [[File:Water Cauldron (level 2) BE1.png|32px]] [[File:Water Cauldron BE1.png|32px]]{{verify|Were these the models used?}} Added cauldrons.
|Water color in cauldrons can be changed by adding [[dye]]s.
|Cauldrons can be used to [[dye]] leather [[armor]].}}
{{History|foot}}

=== Lava cauldron ===
{{History|Java}}
{{History||1.17|snap=20w45a|[[File:Lava Cauldron JE1.png|32px]] Cauldrons can now be filled with [[lava]].}}
{{History|||snap=21w20a|Lava cauldrons now emits redstone signal strength of 3.<ref name=JavaLava/>}}

{{History|bedrock}}
{{History||1.9.0|snap=beta 1.9.0.2|[[File:Lava Cauldron BE1.png|32px]] Cauldrons can now be filled with lava.}}
{{History||1.10.0|snap=beta 1.10.0.3|[[File:Lava Cauldron BE2.png|32px]] The texture of cauldrons filled with lava has been changed.}}

{{History|console}}
{{History||xbox=none|xbone=none|ps=1.88|wiiu=none|switch=none|[[File:Lava Cauldron LCE1.png|32px]] Cauldrons can now be filled with lava.}}
{{History||xbox=none|xbone=none|ps=1.90|wiiu=none|switch=none|[[File:Lava Cauldron LCE2.png|32px]] The texture of cauldrons filled with lava has been changed.}}
{{History|foot}}

=== Powder Snow Cauldron ===
{{History|java}}
{{History||1.17|snap=20w46a|[[File:Powder Snow Cauldron (level 1) JE1.png|32px]] [[File:Powder Snow Cauldron (level 2) JE1.png|32px]] [[File:Powder Snow Cauldron JE1.png|32px]] Cauldrons can now be filled with powder snow.}}
{{History||1.17.1|snap=Pre-release 1|Powder snow now fills twice as fast in a cauldron.}}

{{History|bedrock}}
{{History||1.17.0|snap=beta 1.17.0.52|[[File:Powder Snow Cauldron (level 1) JE1.png|32px]] [[File:Powder Snow Cauldron (level 2) JE1.png|32px]] [[File:Powder Snow Cauldron JE1.png|32px]] Cauldrons can now be filled with powder snow.}}
{{History|foot}}

=== Potion cauldron ===
{{cleanup|Many potion cauldrons here are listed as being added in versions where said potion did not exist yet - please rearrange and add new history entries accordingly}}
{{History|java}}
{{History||1.0.0|snap=Beta 1.9 Prerelease 2|[[File:Arrran Cauldron 1.png|32px]] [[File:Arrran Cauldron 2.png|32px]] [[File:Arrran Cauldron 3.png|32px]] [[File:Arrran Cauldron 4.png|32px]] <br/>[[File:Cauldron (item) JE1 BE1.png|32px]] Cauldrons are intended to be used for the creation of [[potion]]s. 
|Cauldrons can be made to work with a mod, through which the following has been revealed:
* Applying a [[potion]] ingredient to a water cauldron cause it to change to a differently-colored [[lava]] texture, and adding any further potion ingredients to the filled cauldron cause the [[liquid]] to change color.
* Scooping out a potion with ingredients applied cause the potion to have an effect related to the ingredient, e.g. a potion brewed with a [[magma cream]] have [[Fire Resistance]] as an effect.}}
{{History|||snap=Beta 1.9 Prerelease 3|The system was deemed too complex and not user-friendly,<ref>{{Tweet|jeb|119466949708222465|Potions are delayed because *add to cauldron, pick up, look at tooltip, pour back into cauldron, repeat* was extremely tedious|September 29, 2011}}</ref> so the cauldron's ability to brew potions has been replaced with the [[brewing stand]].<ref>{{Tweet|jeb|119710836469149697|A quick discussion with @notch led me in on a new way of doing the potion brewing. Cauldron is out...|September 30, 2011}}</ref><ref>{{Tweet|jeb|119762786619359232|Look back at me! Your Cauldron is now a Brewing Stand. Anything's possible when working with interaction design.|September 30, 2011}}</ref> That brewing system is finalized and doesn't change in the rest of the pre-releases.}}
{{History|pocket alpha}}
{{History||v0.14.0|snap=build 1|[[File:Invisibility Potion Cauldron BE1.png|32px]] [[File:Jump Boost Potion Cauldron BE1.png|32px]] [[File:Fire Resistance Potion Cauldron BE1.png|32px]] [[File:Speed Potion Cauldron BE1.png|32px]] [[File:Slowness Potion Cauldron BE1.png|32px]] [[File:Water Breathing Potion Cauldron BE1.png|32px]] [[File:Instant Health Potion Cauldron BE1.png|32px]] [[File:Instant Damage Potion Cauldron BE1.png|32px]] [[File:Poison Potion Cauldron BE1.png|32px]] [[File:Regeneration Potion Cauldron BE1.png|32px]] [[File:Strength Potion Cauldron BE1.png|32px]] [[File:Weakness Potion Cauldron BE1.png|32px]] [[File:Wither Potion Cauldron BE1.png|32px]] [[File:Turtle Master Potion Cauldron BE1.png|32px]] [[File:Slow Falling Potion Cauldron BE1.png|32px]] Cauldrons can store [[potion]]s, and [[explosion|explode]] if potions are mixed.}}
{{History||v0.15.0|snap=build 1|Cauldrons are now used to make [[tipped arrow]]s.}}
{{History|bedrock}}
{{History||1.10.0|snap=beta 1.10.0.3|[[File:Invisibility Potion Cauldron BE2.png|32px]] [[File:Jump Boost Potion Cauldron BE2.png|32px]] [[File:Fire Resistance Potion Cauldron BE2.png|32px]] [[File:Speed Potion Cauldron BE2.png|32px]] [[File:Slowness Potion Cauldron BE2.png|32px]] [[File:Water Breathing Potion Cauldron BE2.png|32px]] [[File:Instant Health Potion Cauldron BE2.png|32px]] [[File:Instant Damage Potion Cauldron BE2.png|32px]] [[File:Poison Potion Cauldron BE2.png|32px]] [[File:Regeneration Potion Cauldron BE2.png|32px]] [[File:Strength Potion Cauldron BE2.png|32px]] [[File:Weakness Potion Cauldron BE2.png|32px]] [[File:Wither Potion Cauldron BE2.png|32px]] [[File:Turtle Master Potion Cauldron BE2.png|32px]] [[File:Slow Falling Potion Cauldron BE2.png|32px]] The textures of cauldrons filled with [[potion]]s have been changed.}}

{{History|console}}
{{History||xbox=TU60|xbone=CU51|ps=1.64|wiiu=Patch 30|switch=1.0.11|[[File:Invisibility Potion Cauldron BE1.png|32px]] [[File:Jump Boost Potion Cauldron BE1.png|32px]] [[File:Fire Resistance Potion Cauldron BE1.png|32px]] [[File:Speed Potion Cauldron BE1.png|32px]] [[File:Slowness Potion Cauldron BE1.png|32px]] [[File:Water Breathing Potion Cauldron BE1.png|32px]] [[File:Instant Health Potion Cauldron BE1.png|32px]] [[File:Instant Damage Potion Cauldron BE1.png|32px]] [[File:Poison Potion Cauldron BE1.png|32px]] [[File:Regeneration Potion Cauldron BE1.png|32px]] [[File:Strength Potion Cauldron BE1.png|32px]] [[File:Weakness Potion Cauldron BE1.png|32px]] [[File:Wither Potion Cauldron BE1.png|32px]] [[File:Turtle Master Potion Cauldron BE1.png|32px]] [[File:Slow Falling Potion Cauldron BE1.png|32px]]{{verify|Were these the models used?}} Cauldrons can now be filled with [[potion]]s and make an explosion [[sound]] if they are mixed.
|[[Effect]]s can now be applied to [[arrow]]s by using them on a potion-filled cauldron.}}
{{History||xbox=none|xbone=none|ps=1.90|wiiu=none|switch=none|[[File:Invisibility Potion Cauldron BE2.png|32px]] [[File:Jump Boost Potion Cauldron BE2.png|32px]] [[File:Fire Resistance Potion Cauldron BE2.png|32px]] [[File:Speed Potion Cauldron BE2.png|32px]] [[File:Slowness Potion Cauldron BE2.png|32px]] [[File:Water Breathing Potion Cauldron BE2.png|32px]] [[File:Instant Health Potion Cauldron BE2.png|32px]] [[File:Instant Damage Potion Cauldron BE2.png|32px]] [[File:Poison Potion Cauldron BE2.png|32px]] [[File:Regeneration Potion Cauldron BE2.png|32px]] [[File:Strength Potion Cauldron BE2.png|32px]] [[File:Weakness Potion Cauldron BE2.png|32px]] [[File:Wither Potion Cauldron BE2.png|32px]] [[File:Turtle Master Potion Cauldron BE2.png|32px]] [[File:Slow Falling Potion Cauldron BE2.png|32px]]{{verify|Were these the models used?}} The textures of cauldrons filled with [[potion]]s have been changed.}}

{{History|new 3ds}}
{{History||0.1.0|[[File:Invisibility Potion Cauldron BE1.png|32px]] [[File:Jump Boost Potion Cauldron BE1.png|32px]] [[File:Fire Resistance Potion Cauldron BE1.png|32px]] [[File:Speed Potion Cauldron BE1.png|32px]] [[File:Slowness Potion Cauldron BE1.png|32px]] [[File:Water Breathing Potion Cauldron BE1.png|32px]] [[File:Instant Health Potion Cauldron BE1.png|32px]] [[File:Instant Damage Potion Cauldron BE1.png|32px]] [[File:Poison Potion Cauldron BE1.png|32px]] [[File:Regeneration Potion Cauldron BE1.png|32px]] [[File:Strength Potion Cauldron BE1.png|32px]] [[File:Weakness Potion Cauldron BE1.png|32px]] [[File:Wither Potion Cauldron BE1.png|32px]] [[File:Turtle Master Potion Cauldron BE1.png|32px]] [[File:Slow Falling Potion Cauldron BE1.png|32px]]{{verify|Were these the models used?}} Cauldrons can store [[potion]]s.
|Cauldrons make an explosion [[sound]] if potions are mixed, and the potions disappear.
|Potions inside cauldrons have a bubbling effect.}}
{{History|foot}}

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

==Issues==

{{issue list}}

==Trivia==
*[[Arrow]]s "stick" to the [[water]] in a cauldron.
*The inside of a cauldron is 0.25 ({{frac|1|4}}) blocks tall.
*A cauldron holding water is the only way to have water in [[the Nether]] without the use of [[commands]].

==Renders== 
; Normal water
<gallery>
Water Cauldron (level 1).png | Level 1
Water Cauldron (level 2).png | Level 2
Water Cauldron.png | Level 3 - full
Water Cauldron (level 1) BE.png | Level 1 (Bedrock Edition)
Water Cauldron (level 2) BE.png | Level 2 (Bedrock Edition)
Water Cauldron BE.png | Level 3 - full (Bedrock Edition)
</gallery> 

;Dyed water {{Only|BE}}
<gallery>
Cauldron (filled with white water).png|White Water Cauldron
Cauldron (filled with light gray water).png|Light Gray Water Cauldron
Cauldron (filled with gray water).png|Gray Water Cauldron
Cauldron (filled with black water).png|Black Water Cauldron
Cauldron (filled with brown water).png|Brown Water Cauldron
Cauldron (filled with red water).png|Red Water Cauldron
Cauldron (filled with orange water).png|Orange Water Cauldron
Cauldron (filled with yellow water).png|Yellow Water Cauldron
Cauldron (filled with lime water).png|Lime Water Cauldron
Cauldron (filled with green water).png|Green Water Cauldron
Cauldron (filled with cyan water).png|Cyan Water Cauldron
Cauldron (filled with light blue water).png|Light Blue Water Cauldron
Cauldron (filled with blue water).png|Blue Water Cauldron
Cauldron (filled with purple water).png|Purple Water Cauldron
Cauldron (filled with magenta water).png|Magenta Water Cauldron
Cauldron (filled with pink water).png|Pink Water Cauldron
</gallery>

;Cauldrons filled with potions {{Only|BE}}
<gallery>
Night Vision Potion Cauldron.png|Night Vision Potion Cauldron
Invisibility Potion Cauldron.png|Invisibility Potion Cauldron
Jump Boost Potion Cauldron.png|Leaping Potion Cauldron
Fire Resistance Potion Cauldron.png|Fire Resistance Potion Cauldron
Speed Potion Cauldron.png|Swiftness Potion Cauldron
Slowness Potion Cauldron.png|Slowness Potion Cauldro
Turtle Master Potion Cauldron.png|Turtle Master Potion Cauldron
Water Breathing Potion Cauldron.png|Water Breathing Potion Cauldron
Instant Health Potion Cauldron.png|Healing Potion Cauldron
Instant Damage Potion Cauldron.png|Harming Potion Cauldron
Poison Potion Cauldron.png|Poison Potion Cauldron
Regeneration Potion Cauldron.png|Regeneration Potion Cauldron
Strength Potion Cauldron.png|Strength Potion Cauldron
Weakness Potion Cauldron.png|Weakness Potion Cauldron
Slow Falling Potion Cauldron.png|Slow Falling Potion Cauldron
Wither Potion Cauldron.png|Decay Potion Cauldron
</gallery> 

;Powder Snow
<gallery>
Powder Snow Cauldron (level 1).png | Level 1
Powder Snow Cauldron (level 2).png | Level 2
Powder Snow Cauldron.png | Level 3 - full
</gallery>

== Gallery==
<gallery>
The three stages of water height in cauldrons.png| All cauldron states in [[Java Edition]].
Cauldrons potion.png|All [[potion]]s in cauldrons.{{only|be|short=1}}
Cauldrons DyeWater.png|All cauldron [[water]] colors possible with one dye.{{only|be|short=1}}
Brewing Potions.png|How potions were brewed in [[Java Edition Beta 1.9 Prerelease 2|Beta 1.9 Pre-Release 2]] if enabled through a mod.
Dyed Water Cauldrons.jpg|Cauldrons filled with dyed water.
Potion Cauldron.jpg|A cauldron filled with potions.
Arrow Tipping 1.jpg|Using a cauldron to make [[tipped arrow]]s.
Arrow Tipping 2.jpg|Using a cauldron to make [[tipped arrow]]s.
Arrow Tipping 3.jpg|Using a cauldron to make [[tipped arrow]]s.
Snow Cauldron.jpg|A cauldron full of snow.
</gallery>

==References==
{{reflist|2}}

{{Blocks|Utility}}
{{items}}

[[Category:Natural blocks]]
[[Category:Job blocks]]
[[Category:Utility blocks]]
[[Category:Storage]]
[[Category:Manufactured blocks]]
[[Category:Generated structure blocks]]
[[Category:Light sources]]

[[cs:Kotel]]
[[de:Kessel]]
[[es:Caldero]]
[[fr:Chaudron]]
[[hu:Üst]]
[[it:Calderone]]
[[ja:大釜]]
[[ko:가마솥]]
[[nl:Ketel]]
[[pl:Kocioł]]
[[pt:Caldeirão]]
[[ru:Котёл]]
[[th:หม้อปรุงยา]]
[[uk:Казан]]
[[zh:炼药锅]]</li></ul>
pre1Loot tables now work with dispensers and droppers.
Added default table chests/jungle_temple_dispenser.
1.11
{{Extension DPL}}<ul><li>[[Honey Bottle|Honey Bottle]]<br/>{{Item
| title = Honey Bottle
| image = Honey Bottle.png
| renewable = Yes
| heals = {{hunger|6}}
|effects=Clears {{EffectLink|Poison}}
| stackable = Yes (16)
}}

A '''honey bottle''' is a [[drinks|consumable drink]] [[item]] obtainable by using a [[glass bottle]] on a full [[beehive]].  Honey bottles remove [[poison]] when drunk and can be used to craft [[Honey Block|honey blocks]] and [[sugar]].

== Obtaining ==
{{See also|Tutorials/Honey farming}}

=== Harvesting ===
A honey bottle can be obtained by using a [[glass bottle]] on either a [[beehive]] or [[beehive|bee nest]] with a honey level of 5. Doing this angers any [[bee]]s inside, causing them to attack the player, unless there is a [[campfire]] or another [[block]] on [[fire]] beneath the bee nest or beehive.

A [[dispenser]] with glass bottles can be used to collect the honey without angering the bees. The honey bottle appears as an item in the dispenser's inventory. If the dispenser is full, the honey bottle is shot out.

=== Crafting ===
{{Crafting
|Glass Bottle
|Glass Bottle
|Honey Block
|Glass Bottle 
|Glass Bottle
|Output=Honey Bottle, 4
|type= Foodstuff
}}

== Usage ==
To drink a honey bottle, press and hold {{control|use}} while it is selected in the [[hotbar]]. Drinking one restores {{hunger|6}} [[hunger]] and 1.2 hunger [[Hunger#Mechanics|saturation]]. Consuming the item also has the benefit of removing any [[poison]] effect applied to the player. Unlike drinking [[Milk Bucket|milk]], other applied effects are not removed upon drinking a honey bottle.

Honey bottles can be drunk even with a full hunger bar. Drinking a honey bottle takes 25% longer than eating other [[food]] - 2 seconds - and has a unique sound.

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

== Sounds ==
{{edition|java}}:
{{Sound table
|sound=Drink honey1.ogg
|sound2=Drink honey2.ogg
|sound3=Drink honey3.ogg
|sound4=Drink honey3.ogg
|subtitle=Gulping
|source=player
|description=While a player is drinking a honey bottle
|id=item.honey_bottle.drink
|translationkey=subtitles.item.honey_bottle.drink
|volume=0.5
|pitch=''varies'' <ref group=sound>0.9-1.0 for <code>drink_honey1</code> and <code>drink_honey2</code>, 0.315-0.35 for <code>drink_honey3</code>, and 0.675-0.75 for the second copy of <code>drink_honey3</code></ref>
|distance=16}}
{{Sound table
|sound=Bottle fill water1.ogg
|sound2=Bottle fill water2.ogg
|sound3=Bottle fill water3.ogg
|sound4=Bottle fill water4.ogg
|subtitle=Bottle fills
|source=block
|description=When a bottle is filled with honey
|id=item.bottle.fill
|translationkey = subtitles.item.bottle.fill
|volume=1.0
|pitch=1.0
|distance=16
|foot=1}}

{{edition|bedrock}}:
{{Sound table
|type=bedrock
|sound=Drink honey1.ogg
|sound2=Drink honey2.ogg
|sound3=Drink honey3.ogg
|sound4=Drink honey3.ogg<!--This is duplicated intentionally, see below-->
|source=player
|description=While a player is drinking a honey bottle
|id=random.drink_honey
|volume=''varies''<ref group="sound" name="bevarieshoney">0.5 for <code>drink_honey1</code> and <code>drink_honey2</code>, but <code>drink_honey3</code> is 0.175 or 0.375</ref>
|pitch=0.9-1.0}}
{{Sound table
|sound=Fill water bucket1.ogg
|sound2=Fill water bucket2.ogg
|sound3=Fill water bucket3.ogg
|source=block
|description=When a bottle is filled with honey<wbr><ref group=sound>{{Bug|MCPE-53881}}</ref>
|id=bucket.fill_water
|volume=1.0
|pitch=1.0
|foot=1}}

== Data values ==
=== ID ===
{{edition|java}}:
{{ID table
|edition=java
|showforms=y
|generatetranslationkeys=y
|displayname=Honey Bottle
|spritetype=item
|nameid=honey_bottle
|form=item
|foot=1}}

{{edition|bedrock}}:
{{ID table
|edition=bedrock
|shownumericids=y
|showforms=y
|notshowbeitemforms=y
|generatetranslationkeys=y
|displayname=Honey Bottle
|spritetype=item
|nameid=honey_bottle
|id=592
|form=item
|foot=1}}

== Achievements ==

{{Load achievements|Bee Our Guest}}

== Advancements ==
{{Load advancements|Husbandry;A Balanced Diet;Bee Our Guest}}

== History ==
{{History|java}}
{{History||1.15|snap=19w34a|[[File:Honey Bottle JE1.png|32px]] Added honey bottles.}}
{{History|||snap=19w35a|Honey bottles now remove the [[Poison]] effect when consumed.
|Honey bottles are now included in the "A Balanced Diet" [[advancement]].}}
{{History|||snap=19w36a|Honey bottles are now less filling, restoring 1.2 [[Hunger#Mechanics|saturation]] instead of 9.6.}}
{{History||1.15|snap=19w41a|Honey bottles can now be used to craft [[honey block]]s.}}
{{History||1.15|snap=19w44a|Honey bottles can now be [[crafting|crafted]] with four [[glass bottle]]s and one [[honey block]].
|Honey bottles are now stackable (up to 16).}}
{{History|||snap=19w46a|Using [[glass bottle]]s to collect honey now unlocks the [[Bee Our Guest]] advancement.}}

{{History|bedrock}}
{{History||1.14.0|snap=beta 1.14.0.1|[[File:Honey Bottle BE1.png|32px]] Added honey bottles.}}
{{History|||snap=beta 1.14.0.4|[[File:Honey Bottle BE2.png|32px]] The texture of honey bottles has been changed to match {{el|je}}'s.
|Honey bottles can now be crafted with four [[glass bottle]]s and one [[honey block]].
|Honey bottles are now stackable to 16.}}
{{History|||snap=release|slink=Bedrock Edition 1.14.0|Using [[glass bottle]]s to collect honey now unlocks the [[Bee our guest]] achievement.}}
{{History|foot}}

== Issues ==
{{issue list}}

== Trivia ==

* Honey bottles are the only drinkable [[item]]s that can stack. They have a maximum stack size of 16.
* Honey bottles are the only drinkable items that can restore hunger.
* Honey bottles are 4 pixels more full than [[water bottles]].

{{Items}}

[[cs:Lahvička medu]]
[[de:Honigflasche]]
[[es:Frasco con miel]]
[[fr:Fiole de miel]]
[[ja:ハチミツ入りの瓶]]
[[ko:꿀이 든 병]]
[[lzh:蜜瓶]]
[[pl:Butelka miodu]]
[[pt:Frasco de mel]]
[[ru:Бутылочка мёда]]
[[th:ขวดน้ำผึ้ง]]
[[uk:Пляшечка меду]]
[[zh:蜂蜜瓶]]
[[Category:Food]]
[[Category:Renewable resources]]</li><li>[[Ankle Monitor|Ankle Monitor]]<br/>{{Joke feature}}
{{Item
| title = Ankle Monitor
| image = Ankle Monitor.png
| renewable = No
| stackable = Yes (64)
}}

The '''Ankle monitor''' was a joke foot item.

== Usage ==
Ankle monitors were equipped in the boots slot. In survival mode, when equipped, it could not be taken off. However, players in Creative mode are unaffected.

When equipped, the player would be afflicted with {{EffectLink|Slowness}} I.

During the night, being a certain number of blocks from the world spawn, above a certain minimum,{{checkthecode|how much?}} would prompt the following message in chat: "CURFEW WARNING! You are violating your house arrest! Get back by [distance] meters!"

If in [[the Nether]] or [[the End]], a different set of messages would be cycled through which can be seen in the section below.

=== Nether and End messages ===
* CURFEW WARNING! You are violating your house arrest! Uuuh... where are you anyway?
* CURFEW WARNING! Hello, are you there?
* CURFEW WARNING! I'm sure you have important things to do, but you need to go back!
* CURFEW WARNING! We're lonely back home!
* CURFEW WARNING! By "we" I mean I. I'm lonely.
* CURFEW WARNING! Ok enough games... GET BACK RIGHT NOW!
* CURFEW WARNING! LAST WARNING!
* CURFEW WARNING! LASTEST WARNING (really now)
* CURFEW WARNING! ...
* CURFEW WARNING! So... Where are you?
* CURFEW WARNING! Having a good day?
* CURFEW WARNING! Did you see that monster over there?
* CURFEW WARNING! Give it a whack, if you would be so kind.
* CURFEW WARNING! Teheee...
* CURFEW WARNING! Ok, enough of this!
* CURFEW WARNING! Last straw!
* CURFEW WARNING! Now you die.
* CURFEW WARNING! Boom!
* CURFEW WARNING! Hehe, fun right?
* CURFEW WARNING! Ok, you will not hear anything more from me now!
* CURFEW WARNING! You'll be as lonely as I am.
* CURFEW WARNING! How does that feel?
* CURFEW WARNING! Stop. Please. Stupid.
* CURFEW WARNING! I know, I'll wipe my memory. That way, I can start over!
* CURFEW WARNING! *bzzzzttt*

== Sounds ==
{{Sound table
|sound=Robot1arm1.ogg
|sound2=Robot1arm2.ogg
|sound3=Robot1arm3.ogg
|sound4=Robot1arm4.ogg
|source=dependent
|subtitle=''None''
|description=When a notification is displayed
|id=item.ankle_monitor.warning
|translationkey=''None''
|volume=1.0
|pitch=1.0
|distance=16
|foot=1}}

== Data values ==
=== ID ===
{{ID table
|shownumericids=y
|showforms=y
|generatetranslationkeys=java
|displayname=Ankle Monitor
|spritetype=item
|nameid=ankle_monitor
|id=501
|form=item
|translationkey=item.ankleMonitor.name
|foot=1}}

== History ==
{{History|java}}
{{History||1.RV-Pre1|[[File:Ankle_Monitor_(item).png|32px]] [[File:Ankle Monitor.png|32px]] Added ankle monitors.}}
{{History||1.11|snap=16w39a|The inability to remove ankle monitors was somewhat implemented into the canonical game through the addition of [[Curse of Binding]].<ref>{{ytl|Vm6oplvyyh0|t=3m31s}}</ref>}}
{{History|foot}}

== Issues ==
Ankle monitors are an unsupported [[item]] due to being an [[Wikipedia:April Fools' Day|April Fools']] joke, and therefore such issues relating to them will not be fixed.

== Gallery ==

<gallery>
TechGear.png|A [[player]] wearing the gear featured in this [[wikipedia:April Fools' Day|April Fools']] joke version.
</gallery>

==References==
{{Reflist}}

{{Items}}
{{Jokes}}

[[Category:Non-renewable resources]]
[[Category:Joke items]]

[[es:Ankle monitor]]</li></ul>
16w32aDonkeys, mules, husks and zombie villagers now each draw from their own loot tables, rather than drawing from the horse and zombie loot tables, respectively
16w43aVillagers, vexes and ender dragons are now able to draw from their own loot tables.
1.13
{{Extension DPL}}<ul><li>[[Nether Star|Nether Star]]<br/>{{Distinguish|Firework Star}}
{{Item
| image = Nether Star.gif
| renewable = Yes
| stackable = Yes (64)
| rarity = Uncommon
}}
The '''Nether Star''' is a rare item [[drops|dropped]] by the [[wither]] that is used solely to [[Crafting|craft]] [[Beacon]]s.

== Obtaining ==

=== Mob loot ===

The nether star can be obtained only by defeating the [[Wither]] [[Mob#Boss mobs|boss]], which is created using [[Soul sand]] and [[Head|Wither Skeleton Skulls]]. One nether star is dropped each time; the dropped amount is not affected by the [[Looting]] enchantment. {{IN|java}}, nether stars dropped by withers take 10 minutes to despawn and are immune to explosions. {{IN|bedrock}}, nether star items never despawn, neither by time nor by explosions.

== Usage ==

The nether star has the same animated glint as [[enchanted]] items, [[potion]]s, and [[end crystal]]s.

A dropped nether star item cannot be destroyed by [[explosion]]s. However, it can still be destroyed by a falling [[anvil]],‌{{only|java}} [[fire]], [[lava]], [[cacti]], or [[the Void]].

It is used to [[Crafting|craft]] a [[beacon]].

=== Crafting ingredient ===

{{crafting usage|match=start}}

== Achievements ==
{{load achievements|The beginning;The beginnig?.}}

== Advancements ==
{{load advancements|Withering Heights}}

== Data values ==
=== ID ===
{{edition|java}}:
{{ID table
|edition=java
|showforms=y
|generatetranslationkeys=y
|displayname=Nether Star
|spritetype=item
|nameid=nether_star
|form=item
|foot=1}}

{{edition|bedrock}}:
{{ID table
|edition=bedrock
|showaliasids=y
|shownumericids=y
|showforms=y
|notshowbeitemforms=y
|generatetranslationkeys=y
|displayname=Nether Star
|spritetype=item
|nameid=nether_star
|aliasid=netherstar
|id=518
|form=item
|translationkey=item.netherStar.name
|foot=1}}

== Video ==

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

== History ==

{{History|java}}
{{History||1.4.2|snap=12w34a|[[File:Nether Star JE1.png|32px]] The texture of the nether star has been added.}}
{{History|||snap=12w36a|[[File:Nether Star JE1.gif|32px]] Added nether stars.
|Nether stars are [[drops|dropped]] by the [[wither]].}}
{{History|||snap=12w37a|[[File:Nether Star JE2 BE1.gif|32px]] The texture of nether stars has been changed so that they no longer have a dark outline.}}
{{History||1.4.6|snap=12w49a|[[Drops|Dropped]] nether stars can no longer be destroyed by [[explosion]]s.}}
{{History||1.13|snap=17w47a|Prior to [[1.13/Flattening|''The Flattening'']], this [[item]]'s numeral ID was 399.}}
{{History||1.14|snap=18w43a|[[File:Nether Star.gif|32px]] The texture of nether stars has been changed.}}
{{History||1.16|snap=20w07a|Nether star has become a [[renewable resource]], as [[soul sand]], one of the blocks used to construct withers, is now renewable through [[bartering]].}}

{{History|pocket alpha}}
{{History||v0.16.0|snap=build 4|[[File:Nether Star JE2 BE1.gif|32px]] Added nether stars.}}
{{History|bedrock}}
{{History||1.10.0|snap=beta 1.10.0.3|[[File:Nether Star.gif|32px]] The texture of nether stars has been changed.}}

{{History|console}}
{{History||xbox=TU19|xbone=CU7|ps=1.12|wiiu=Patch 1|switch=1.0.1|[[File:Nether Star JE2 BE1.gif|32px]] Added nether stars.}}
{{History||xbox=none|xbone=none|ps=1.90|wiiu=none|switch=none|[[File:Nether Star.gif|32px]] The texture of nether stars has been changed.}}

{{History|New 3DS}}
{{History||1.3.12|[[File:Nether Star JE2 BE1.gif|32px]] Added nether stars.}}
{{History|foot}}

== Issues ==
{{issue list}}

== Gallery ==

<gallery>
File:Nether Star JE3 BE2.png|The nether star without enchanted animated glint.
File:Star Drop.png|The nether star dropped by the wither.
File:Wither, left- Nether Star, right.png|A wither to the left, and a nether star to the right.
</gallery>

== References ==
{{reflist}}

==External Links==
*[https://www.minecraft.net/en-us/article/taking-inventory--nether-star Taking Inventory: Nether Star] – Minecraft.net on May 11, 2023

{{Items}}

[[cs:Netheritová hvězda]]
[[de:Netherstern]]
[[es:Estrella del Inframundo]]
[[fr:Étoile du Nether]]
[[hu:Alvilági csillag]]
[[it:Stella del Nether]]
[[ja:ネザースター]]
[[ko:네더의 별]]
[[nl:Netherster]]
[[pl:Netherowa gwiazda]]
[[pt:Estrela do Nether]]
[[ru:Звезда Нижнего мира]]
[[tr:Nether Yıldızı]]
[[uk:Зірка Незеру]]
[[zh:下界之星]]
[[Category:Renewable resources]]</li><li>[[Map|Map]]<br/>{{about|the craftable map|maps showing the locations of certain structures|Explorer Map|other uses|Map (disambiguation)}}
{{distinguish|World}}
{{Item
| image = Map Zoom 4.png
| renewable = Yes
| stackable = Yes (64)
}}

A '''map''' is an [[item]] used to view explored [[Chunk|terrain]] and mark landmarks.

==Obtaining==
===Crafting===
{{crafting
|head=1
|showname=0
|showdescription=1
|A1= Paper
|B1= Paper
|C1= Paper
|A2= Paper
|B2= Compass
|C2= Paper
|A3= Paper
|B3= Paper
|C3= Paper
|Output= Empty Map
|type= Miscellaneous
|description=This variation is called an "empty locator map" {{in|bedrock}}, or an "empty map" {{in|java}}.

When the player first creates a map, it is blank. It needs to be activated by holding it and pressing ''{{Control|use item}}''. after which it records terrain and location markers as the player travels within (or close to) the area it maps.
}}
{{crafting
|A1= Paper
|B1= Paper
|C1= Paper
|A2= Paper
|B2= Paper
|C2= Paper
|A3= Paper
|B3= Paper
|C3= Paper
|Output= Empty Map
|type= Miscellaneous
|description={{only|bedrock}}

This variation is called an "empty map". It does not show location markers. It is intended for cloning and zooming locator maps without having to consume an additional [[compass]] (thereby saving [[iron ingot]]s and [[redstone dust]]), but it can also be {{Control|use|text=activated}} and later converted to a locator map by combining it with a compass on an [[anvil]], [[crafting table]], or [[cartography table]].
|foot=1
}}

=== Natural generation ===
==== Chest loot ====
{{LootChestItem|empty-map,map 
}}

=== Cartography table ===
A map can also be created using a single paper on a [[cartography table]] to create an empty map, or a paper with a compass for an empty locator map.{{only|bedrock}}

=== Starting map ===
{{exclusive|bedrock|section=1}}
When creating a new world {{in|bedrock}}, the player can enable the "Starting Map" option to spawn with an empty locator map in the hotbar. The map's zoom scale is 1:8. The map is updated only while the player holds it.

=== Trading ===
Novice-level cartographer [[Villager|villagers]] sell a single empty map for 7 [[Emerald|emeralds]] as their trades.

{{IN|java}}, cartographer villagers may give players with the [[Hero of the Village]] effect an empty map.

== Usage ==
{{See also|Tutorials/Mapping}}

=== Mapping ===

Crafting a map creates an empty map. The map is drawn for the first time when it is held and used (with ''{{control|use item}}''). This map can then be adjusted to different zoom levels. After conversion to a drawn map item, it starts to draw a top-down view of the player's surroundings, with North pointing to the top of the map. A pointed oval pointer indicates the player's position on the map, and moves in real-time as the player moves across the terrain shown on the map. The map does ''not'' center on the player when created, rather, the world is broken up into large invisible grid squares, and the map displays the area of whichever grid square it is in when it is first used. For example, if a player uses a new map in a certain grid square, and then moves a distance away and uses another fresh map but is still within the same grid square, both maps appear identical. To make a map that is not identical to the first one, the player would have to move outside of the edges of the first map (because then they would be in a new grid square). This way, no two maps of the same size can ever partially overlap and every map can display only a fixed area.

To record the world on a map, that specific map must be held in the player's hands while the player moves around the world. The world is recorded as-is during exploration, meaning that if the world is modified, a player must revisit the area while holding the map to update the map's view. Maps can also be [[Map#Cloning|cloned]]. If a player holds a map whose one or more clones are on display in item frames, updates are made on all clone-connected maps. 

Other players are displayed on the map only if they have a map in their inventory cloned from the one being looked at. When placing a map into an [[item frame]], the map displays with a green pointer shown at the location of the item frame. This is to help the player see where they are in relation to the area that the map is showing. If the player leaves a map in an item frame and views a clone of it, the green pointer remains in the spot of the framed copy. This can be used to set up waypoints. Unexplored areas are transparent, making the item frame visible.

When the player leaves the area shown on a specific map, the player pointer transforms into a white dot that moves on that map. The marker shrinks to a smaller white dot if the player is far from the map's center: the area is 320 by 320 blocks per scale factor. The dot moves along the edge of the map to show the relative location of the player. However {{in|bedrock}}, the pointer remains as an arrow but shrinks until the player is near the area shown on the map.

While maps in [[the Nether]] work, they show only the red-and-gray pattern, regardless of the blocks placed. The only useful function is finding where the player is in relation to placed framed maps, which show as green pointers.  Additionally, the player pointer rapidly spins and is not a good indicator of direction. Placing a [[banner]] in [[the Nether]] still shows it on the map as usual.  Having a smaller map image while riding a [[strider]] in the Nether can help one to see one's footing while traveling over [[lava]].

{{IN|java}}, when using a map from another dimension, the map shows the player's position and direction when they were last in the dimension of the map. {{IN|bedrock}}, however, the player can use maps from one dimension while in another dimension. For locator maps, the place marker changes color depending on the dimension that the player is currently in (white for the Overworld, red for [[the Nether]], and magenta for [[the End]]). An Overworld map in the Nether shows the player's corresponding location and direction in the Overworld.<ref name=multiverse>{{ytl|EpP1diZdEdI}}</ref> Similarly, a Nether Map in the Overworld shows the player's corresponding location in the Overworld, but the place marker spins, just like a Nether map in the Nether. An Overworld map in the End shows the world spawn.<ref name=multiverse/> A Nether map cannot be used in the End — the map appears, but the place marker is not shown anywhere — and similarly, an End map cannot be used in the Overworld or the Nether.

A player can make a large piece of pixel art (128×128) facing upward, center a map on it, and place that map in an [[item frame]] to create a custom picture. Locking is recommended. See [[Map item format#Map Pixel Art]] for details on the techniques.

Maps display as a mini-map when held in the off-hand, or if the off-hand slot is occupied; the map is full-sized only when held in the dominant hand with both hands free.

A map always positions itself facing towards North when placed horizontally within an item frame regardless of how the map is placed.

=== Map content ===
{{Main|Map item format}}

Maps consist of square pixels arranged like pixels in a 128×128 square pattern, with each pixel representing a square portion of land. {{IN|java}}, the [[Map item format#Color table|color of a map pixel]] generally matches the color of the most common [[opaque]] block in the corresponding area, as seen from the sky. 'Minority blocks' in the target area have no effect on the color of the pixel, thus small features tend to be undetectable on zoomed-out maps.

{{IN|bedrock}}, the [[Map item format#Color table|color of a map pixel]] instead matches the single top-most opaque block in a grid sized by the map magnification pixel size (see the table in the "Player marker and pointer" section below). For example, a 3/4 magnification map has a pixel size of 8x8 blocks; this means the map will read only the top-most opaque blocks at the 0,0 coordinate, the 8,0 coordinate, the 0,8 coordinate, etcetera, ignoring all other blocks in the area. This means that {{in|bedrock}}, map pixel art requires only one block per pixel regardless of map magnification.

{{IN|bedrock}}, grass, foliage and water colors that are biome-dependent are represented accurately on a map.

{| class="wikitable"
|-
! style="width: 300px;" | {{el|je}}
! style="width: 300px;" | {{el|be}}
|-
| style="text-align: center;" | [[File:Map Zoom 4.png|alt=All banners marked on a map, alongside a named banner.|216px]]
| style="text-align: center;" | [[File:Map item BE.png|216px]]
|-
| Biome colors on ''Java Edition''.
| Biome colors on ''Bedrock Edition''.
|-
|}

Maps also show ground up to about 15 blocks below the surface of the water in oceans as slightly lighter blue, to show where the ground rises. This is not true with land above water. Higher elevations in the world mean lighter colors on the map. The map records the surface even as the player moves below the surface.

A standard map represents 128x128 blocks (1 block per pixel, 8x8 [[chunks]]) but maps can be zoomed-out to represent up to 2048x2048 blocks (16 square blocks per pixel, 128x128 [[chunks]]).

Some relevant distances: 64 blocks (4 chunks) is the update radius from a player in the Overworld and the End. However, it is half this (32 blocks) in the Nether. Also, 1024 blocks is the minimum Overworld distance from a [[nether portal]], at which players can build another portal and expect to reach a new location in the Nether. This is the distance across a 1:8 map, and also from a 1:16 map's center to its edge.

=== Player marker and pointer ===
{{IN|java}}, every map contains a marker that marks the position of the player, and points in the same direction as the player. When a player moves out of a map, a big white dot appears and moves relative to the player's position. The pointer either disappears when the player moves away a certain distance from the border of the map or, in case of [[explorer map]]s, the big white dot changes to a smaller white dot. The distance required for the small white dot to appear(explorer maps) or for the big dot to vanish (normal maps) changes with the scaling of the map.
* '''Level 0/4 :''' 128×128 blocks (each map pixel represents 1 block)
* '''Level 1/4 :''' 256×256 blocks (2×2 blocks per map pixel)
* '''Level 2/4 :''' 512×512 blocks (4×4 blocks per map pixel)
* '''Level 3/4 :''' 1024×1024 blocks (8×8 blocks per map pixel)
* '''Level 4/4 :'''  2048×2048 blocks  (16×16 blocks per map pixel)
{{IN|bedrock}}, a map can be crafted with or without this marker, and a map without a position marker can add one later by adding a compass to the map.  When a map is crafted without a compass, it's simply called an "empty map", but when crafted with a compass, it's called an "empty locator map". The marker also turns red if the player enters the Nether with an Overworld map and shows the player's Overworld location relative to the Nether location. A map created in the End has a purple marker showing the player's location. If an Overworld map is used in the End, a magenta dot appears on the player's spawn point.{{/BE|position}}
{{crafting
|name=Map<br>(with marker)
|ingredients=[[Map]] or Empty Map +<br>[[Compass]]
|showdescription=1
|Map (no markers);Empty Map 
|Compass
|Output= Locator Map;Empty Locator Map
|type= Miscellaneous
|description={{el|be}} only.
Maps crafted from only paper do not show the location marker; to add it, a compass must be added to the map.
|foot=1
}}

{{IN|bedrock}}, a cartography table can also be used to add a pointer to create a locator map or empty locator map. This can be done by adding a compass to paper, or to an empty map or map.

=== Zooming out ===
[[File:Cartography table UI zoom.png|thumb|300px|{{IN|java}}, cartography table's UI, showing the map is being zoomed out.]]

A [[cartography table]] can also be used to zoom out, taking only one piece of paper per zoom level.

A blank map can not be zoomed out. A map has to have something already marked on it for the zooming to be possible.

{{Crafting
  |A1= Paper |B1= Paper |C1= Paper
  |A2= Paper |B2= Map;Locator Map   |C2= Paper
  |A3= Paper |B3= Paper |C3= Paper
  |Output= Map;Locator Map
  |showdescription=1
  |description=Locator Map {{el|be}} only.
}}
{{/BE|zoom}}

==== Zoom details ====
The zooming function starts from when the map is created (zoom level 0) up to its fourth zoom step (zoom level 4).

{| class="wikitable" style="text-align: center" data-description="Zoom levels"
! colspan="2" | 
! Zoom step 0  
! Zoom step 1  
! Zoom step 2  
! Zoom step 3  
! Zoom step 4
|-
! colspan="2" |
| [[File:Map Zoom 0.png|116px|Zoom step 0, 1:1]]
| [[File:Map Zoom 1.png|116px|Zoom step 1, 1:2]]
| [[File:Map Zoom 2.png|116px|Zoom step 2, 1:4]]
| [[File:Map Zoom 3.png|116px|Zoom step 3, 1:8]]
| [[File:Map Zoom 4.png|116px|Zoom step 4, 1:16]]
|-
! colspan="2" | Zoom level
| 0/4
| 1/4
| 2/4
| 3/4
| 4/4
|-
! colspan="2" | 1 map pixel represents
| 1 block
| 2×2 blocks
| 4×4 blocks
| 8×8 blocks
| 16×16 blocks<br>(1×1 chunk)
|-
! colspan="2" | Scaling ratio
| 1:1
| 1:2
| 1:4
| 1:8
| 1:16
|-
! rowspan="2" colspan="2" | Map covers an area of
| 128×128 blocks
| 256×256 blocks
| 512×512 blocks
| 1024×1024 blocks
| 2048×2048 blocks
|-
| 8×8 chunks
| 16×16 chunks
| 32×32 chunks
| 64×64 chunks
| 128×128 chunks
|-
! colspan="2" | Smallest discernible features
| Blocks
| Trees, Paths
| Lakes, Buildings
| Mountains, Rivers
| Biomes, Mountain Ranges
|-
! colspan="2" | Use cases
| Pixel art, Base plans
| Base surroundings
| Structure mapping
| Landscape mapping
| Biome mapping
|-
! rowspan="2" | Total paper needed to zoom out from Level 0
! in anvil{{only|bedrock|short=1}} or crafting table
| -
| {{ItemSprite|Paper}} 8
| {{ItemSprite|Paper}} 16
| {{ItemSprite|Paper}} 24
| {{ItemSprite|Paper}} 32
|-
! in cartography table
| -
| {{ItemSprite|Paper}} 1
| {{ItemSprite|Paper}} 2
| {{ItemSprite|Paper}} 3
| {{ItemSprite|Paper}} 4
|}

Maps are always aligned to a grid at all zoom levels. That means zooming out any different map in a specific area covered by that map always has the same center. As such, maps are aligned by map width (1024 blocks for a level 3 maps) minus 64. A level 3 map generated at spawn covers X and Z coordinates from -64 to 959. All maps generated in this area zoom out to the same coordinates, guaranteeing that they are always 'aligned' on a map wall. For a zoomed-out map to cover a new area, it must start with a base (level 0) map that is in that area.

At zoom level 0, a map created on the point (0,0) has (0,0) at the center of the map. At higher zoom levels of the same map, the coordinate (0,0) is in the top left square of the map.

{{IN|java}}, zoom level can be seen on a map by turning on Advanced Tooltips (a [[Debug screen#More debug keys|debug screen]] option that can be toggled by using the key combination {{key|F3+H}}). The tooltip of the map then shows the zoom level, scaling factors, and map ID.

=== Cloning ===
[[File:Cartography table UI clone.png|thumb|300px|{{IN|Java}}, cartography table's UI, showing the map is being cloned.]]

A mix of empty maps and empty locator maps may be used. Whether the cloned maps show position markers is dependent only on the input map.

A [[cartography table]] can also be used to clone a map.

The parts of the world that have already been explored and mapped are copied, and newly explored areas appear on both instances. If one of the maps is later zoomed out, then the maps lose their connection to each other and function as completely separate maps that have to be individually filled by exploring.

In Creative mode, a map in an item frame may be cloned by using {{control|pick block}} on it, as long as that map is not also in the player's inventory.

It doesn't matter if the map to be cloned is at a higher zoom level (made of more paper) than the blank map. Upon copying the map, both resulting maps have the same magnification as the starting map.

{{/BE|clone}}

=== Crafting ingredient ===

{{crafting usage|Map, Empty Map}}

=== Marking points ===
{{IN|java}} the player has the ability to mark spots on a map. To do this, {{control|use}} a map on a placed-down [[banner]], and the spot of the banner gets marked on the map. The mark takes the color of whatever the base color is for the banner, and if the banner has a name, the mark shows that name. Banner marks on a map are always oriented with their top facing north, regardless of the banner's actual orientation. If the banner is destroyed, the mark of the banner remains at first, but if the player gets closer to where the banner previously was, it disappears as the area is updated on the map.

If a map is mounted on an item frame and is within the area it depicts, the mounted map displays its current location with a green indicator rotated to match its orientation.

[[File:Map Marker Bedrock on Item frame.png|thumb|181x181px|{{IN|bedrock}} this is what a map lying on an item frame looks like, while showing markers.]]
{{IN|bedrock}} the player can place copies of locator maps in [[item frame]]s in order to create a land mark. The marker is a green dot that resembles the shape of the player's marker, but in green color. The position the marker points at depends on the direction the item frame is facing. It is worth noting that the markers work only on copies of the same map. Other maps of the same area do not show the existing markers that the player(s) had placed.

If a player has a cloned map in their inventory, their pointer appears white when viewed on the same map held by another player. Hence, if all players have the same cloned map in their inventory, all markers would appear white when the clone map is viewed. 

{| class="wikitable"
|-
! style="width: 300px;" | {{el|je}}
! style="width: 300px;" | {{el|be}}
|-
| style="text-align: center;" | [[File:Banner marked map.png|alt=All banners marked on a map, alongside a named banner.|216px]]
| style="text-align: center;" | [[File:Tracking map with markers bedrock.png|216px]]
|-
| How every banner appears {{IN|java}} on a map, including named banners.
| {{IN|bedrock}} this is how a locator map shows map markers while held by a player.
|-
|}

===Locking===
[[File:Cartography table UI lock.png|thumb|300px|{{IN|Java}}, cartography table's UI, showing the map is being locked.]]

Maps can be locked when using a [[glass pane]] in a [[cartography table]]. This creates a new map containing the same data and locks it. All copies of this new map are also locked. A locked map never changes, even when the depicted terrain changes. {{IN|Be}}, locked maps have a unique texture.

{| class="wikitable" style="text-align: center;"
|-
! Condition
! style="width: 200px;" | Newly created map
! style="width: 200px;" | Map after terrain alteration
|-
! Unlocked map
| [[File:Map Zoom 0.png|174px]] || [[File:Unlocked Map.png|174px]]
|-
! Locked map
| [[File:Map Zoom 0.png|174px]] || [[File:Map Zoom 0.png|174px]]
|-
|}

{{-}}

== Sounds ==
{{Edition|Java}}:
{{Sound table
|rowspan=2
|sound=Drawmap1.ogg
|sound2=Drawmap2.ogg
|sound3=Drawmap3.ogg
|subtitle=Map drawn
|source=player
|description=When a map is drawn
|id=ui.cartography_table.take_result
|translationkey=subtitles.ui.cartography_table.take_result
|volume=1.0
|pitch=1.0
|distance=16}}
{{Sound table
|subtitle=Map drawn
|source=block
|description=When a map is edited using a cartography table
|id=ui.cartography_table.take_result
|translationkey=subtitles.ui.cartography_table.take_result
|volume=1.0
|pitch=1.0
|distance=16
|foot=1}}

{{Edition|Bedrock}}:
{{Sound table
|type=bedrock
|rowspan=2
|sound=Drawmap1.ogg
|sound2=Drawmap2.ogg
|sound3=Drawmap3.ogg
|source=block
|description=When a map is drawn<wbr>{{Upcoming|BE 1.20.20.20}}
|id=ui.cartography_table.take_result|idnote={{Verify|Could be block.cartography_table.use}}
|volume=0.8
|pitch=1.0}}
{{Sound table
|type=bedrock
|source=block
|description=When a map is edited using a cartography table
|id=ui.cartography_table.take_result
|volume=0.8
|pitch=1.0
|foot=1}}

== Data values ==
=== ID ===
{{edition|java}}:
{{ID table
|edition=java
|showforms=y
|generatetranslationkeys=y
|displayname=Empty Map
|spritetype=item
|nameid=map
|form=item}}
{{ID table
|displayname=Map
|spritetype=item
|nameid=filled_map
|form=item
|translationkey=item.minecraft.filled_map, filled_map.buried_treasure, filled_map.explorer_jungle{{upcoming|java 1.20.2}}, filled_map.explorer_swamp{{upcoming|java 1.20.2}}, filled_map.mansion, filled_map.monument, filled_map.unknown, filled_map.village_desert{{upcoming|java 1.20.2}}, filled_map.village_plains{{upcoming|java 1.20.2}}, filled_map.village_savanna{{upcoming|java 1.20.2}}, filled_map.village_snowy{{upcoming|java 1.20.2}}, filled_map.village_taiga{{upcoming|java 1.20.2}}
|foot=1}}

{{edition|bedrock}}:
{{ID table
|edition=bedrock
|showaliasids=y
|shownumericids=y
|showforms=y
|notshowbeitemforms=y
|generatetranslationkeys=y
|displayname=Empty Map
|spritetype=item
|nameid=empty_map
|aliasid=emptymap
|id=515
|form=item
|translationkey=item.emptyMap.name, item.emptyLocatorMap.name}}
{{ID table
|displayname=Map
|spritetype=item
|spritename=map-be
|nameid=filled_map
|aliasid=map
|id=420
|form=item
|translationkey=item.map.name, item.map.exploration.mansion.name, item.map.exploration.monument.name, item.map.exploration.treasure.name
|foot=1}}

=== Metadata ===
{{see also|Bedrock Edition data values}}
{{IN|bedrock}}, maps use the following data values:

{{/DV}}

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

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

=== Map icons ===
{{see also|Player.dat format|Map item format|map_icons.png}}
Map icons are 8×8 in ''Java Edition'', but 16×16 in Bedrock Edition. As such, there are minor misalignment issues in ''Java Edition''.<ref>{{bug|MC-214649|||WF}}</ref>
[[File:Map icons.png|thumb|128px|Map icons texture {{in|Java}}]]
[[File:Map icons BE.png|thumb|128px|Map icons texture {{in|Bedrock}}]]

{| class="wikitable"
|-
! Java ID !! Bedrock ID !! Text ID !! Appearance !! Purpose !! Shown in item frames?
|-
| 0 ||  ||<code>player</code> || [[File:Player (texture) JE1 BE1.png|16px]] [[File:Player (texture) BE2.png|16px]] White marker || Players (on map) || No
|-
| 1 || 1 ||<code>frame</code> || [[File:Green Marker (texture) JE1 BE1.png|16px]] [[File:Green Marker (texture) BE2.png|16px]] Green marker || The current map in an item frame || Yes
|-
| 2 ||  ||<code>red_marker</code> || [[File:Red Marker (texture) JE1 BE1.png|16px]] [[File:Red Marker (texture) BE2.png|16px]] Red marker || Position converted to Overworld when opening Overworld map in the Nether{{Only|bedrock}} || No
|-
| 3 ||  ||<code>blue_marker</code> || [[File:Blue Marker (texture) JE1 BE1.png|16px]] [[File:Blue Marker (texture) BE2.png|16px]] Blue marker || Other players || No
|-
| 4 ||  ||<code>target_x</code> || [[File:Target X (texture) JE1 BE1.png|16px]] White X || Unused || Yes
|-
| 5 ||5
|<code>target_point</code> || [[File:Target Point (texture) JE1 BE1.png|16px]] [[File:Target Point (texture) BE2.png|16px]] Red triangle || Unused || Yes
|-
| 6 || 6 ||<code>player_off_map</code> || [[File:Player Off Map (texture) JE1 BE1.png|16px]] Large white dot || Players off map, nearby{{only|java}} || No
|-
| 7 || 13 ||<code>player_off_limits</code> || [[File:Player Off Limits (texture) JE1.png|16px]] [[File:Player Off Limits (texture) BE.png|16px]] Small white dot || Players off map, far away{{only|java}} || No
|-
| 8 ||14
|<code>mansion</code> || [[File:Mansion (texture) JE1.png|16px]] [[File:Mansion (Texture) BE2.png|frameless|16x16px]] Woodland mansion || Woodland mansion || Yes
|-
| 9 || 15 ||<code>monument</code> || [[File:Monument (texture) JE1.png|16px]] [[File:Monument Texture BE2.png|frameless|16x16px]] Ocean monument || Ocean monument || Yes
|-
| 10 - 25 ||  ||<code>{{tooltip|banner_*|banner_white, banner_orange, banner_magenta, banner_light_blue, banner_yellow, banner_lime, banner_pink, banner_gray, banner_light_gray, banner_cyan, banner_purple, banner_blue, banner_brown, banner_green, banner_red, banner_black}}</code> || [[File:Banner White (texture) JE1.png|16px]] [[File:Banner Light Gray (texture) JE1.png|16px]] [[File:Banner Gray (texture) JE1.png|16px]] [[File:Banner Black (texture) JE1.png|16px]] [[File:Banner Brown (texture) JE1.png|16px]] [[File:Banner Red (texture) JE1.png|16px]] [[File:Banner Orange (texture) JE1.png|16px]] [[File:Banner Yellow (texture) JE1.png|16px]] [[File:Banner Lime (texture) JE1.png|16px]] [[File:Banner Green (texture) JE1.png|16px]] [[File:Banner Cyan (texture) JE1.png|16px]] [[File:Banner Light Blue (texture) JE1.png|16px]] [[File:Banner Blue (texture) JE1.png|16px]] [[File:Banner Magenta (texture) JE1.png|16px]] [[File:Banner Purple (texture) JE1.png|16px]] [[File:Banner Pink (texture) JE1.png|16px]]<br>Banners in all 16 wool colors{{only|java}}|| Banner markers || Yes
|-
| 26 ||4
|<code>red_x</code> || [[File:Red X (texture) JE1.png|16px]] [[File:Target X (texture) BE2.png|16px]] Red X || Buried treasure || Yes
|-
| || 8 || || [[File:Magenta Marker (texture) BE1.png|16px]] Magenta marker
| Position converted to Overworld when opening Overworld map in the End{{Only|bedrock}} || No 
|-
| || 9 || || [[File:Orange Marker (texture) BE1.png|16px]] Orange marker{{more info}}
|Other players
|Yes
|-
| || 10 || || [[File:Yellow Marker (texture) BE1.png|16px]] Yellow marker
| Other players || No
|-
| || 11 || || [[File:Cyan Marker (texture) BE1.png|16px]] Cyan marker
| Other players || No
|- 
| -
|12
| || [[File:Green Point (texture) BE1.png|16px]] Green Triangle
| Other structure such as stronghold, fortress, end city, etc. when used as explorer map destination{{Only|bedrock}} || Yes
|}
It should be noted that even if the player used a NBT editor to add an additional icon on the map, ''Minecraft'' shows only the first one listed when the player loads up their world.

== Achievements ==
{{load achievements|Map Room}}

== History ==
{{see also|section=24|map_icons.png|Java Edition history of textures#Map icons}}
{{more images|section=24|{{bug|MC-72962}}}}
{{History||April 27, 2011|link=https://web.archive.org/web/0/http://notch.tumblr.com/post/4988431144/the-maps|[[Notch]] unveiled screenshots of the map.}}
{{History||April 28, 2011|link={{tweet|notch|63500114005721088}}|[[Notch]] said that he would try to make maps place-able on [[wall]]s.}}
{{History|java beta}}
{{History||1.6|snap=Test Build 3|[[File:Map (item) JE1 BE1.png|32px]] Added maps.}}
{{History||1.6.6|The ability to auto-craft maps using shift-click has been disabled.}}
{{History||1.8|snap=Pre-release|Maps can now be found in library chests in the brand-new [[stronghold]]s.
|Auto crafting maps has been restored. Map cloning, therefore, is unavailable for a period of time.}}
{{History||1.8.1|Maps now work both while walking and flying.}}
{{History|java}}
{{History||1.0.0|snap=Beta 1.9 Prerelease 5|Prior to this update, the [[sun]] in ''[[Minecraft]]'' rose in the North, which threw off many [[player]]s and led to a common misconception that ''Minecraft'' maps/[[world]]s were oriented with East at the top. The sun now rises in the east and sets in the west, making navigation much more intuitive.
|Before the change in sun position, it was commonly said that ''Minecraft'' maps/worlds are oriented with East at the top; sunrise, by definition, occurs at the East, which means it is certainly true that the maps were oriented "East" since the Sun rose from the top (North). However, [[Jeb]] asserted (and [[Notch]] agreed) that the sun rose in the north.<ref>{{Tweet|jeb|87815841160237056}}</ref><ref>{{Tweet|notch|88155424880201728}}</ref> Most mods and map-making tools, however, used the terms East and North consistent with their actual definitions (e.g. a [[Programs and editors/Cartograph|Cartograph]]-generated map with North at the top is rotated 90 degrees from the in-game map).}}
{{History||1.4.2|snap=12w34a|[[File:Empty Map JE1 BE1.png|32px]] [[Crafting]] a map now creates an empty map. The map is drawn for the first time when it is held and right clicked, and is centered near the location of the [[player]] when clicked (not as before where it was centered on the location it was crafted.)
|Previously, in order to map a new area, the map had to be ''crafted'' in that area (rather than carrying a previously-crafted map to the new area). The point where a map is crafted becomes its permanent center, and could never be changed. 
|The pointer no longer disappears when leaving the map, but transforms into a white dot, indicating on what side of the map the player is located.
|Maps now align to a grid, making it easier to create adjacent maps.
|Maps can now be zoomed out (but not zoomed in).
|Maps can now be cloned and scaled.}}
{{History||1.4.2|snap=12w34b|Maps now have a ''zoom level'', which was fixed at 1:8 prior to snapshot [[Java Edition 12w34a|12w34a]],<ref name="mapinfo">https://web.archive.org/web/0/http://notch.tumblr.com/post/4988431144/the-maps</ref> but  now starts at 1:1 and can be increased up to 1:16 by re-crafting an existing map.
|Maps are no longer numbered on the top-left corner and is labeled through the tooltip.}}
{{History|||snap=12w36a|New maps are now crafted at a scale factor of 1:1. A zoomed in map can be zoomed out by re-crafting it with another 8 sheets of [[paper]] on a [[crafting table]]. Each time this is done, the scale increases - 1:1, 1:2, 1:4, 1:8, 1:16 with a map scale of 1:16 being the current maximum.}}
{{History||1.7.2|snap=13w38a|The map size has been increased when placed on a [[wall]] using the [[item frame]].
|More colors have been added to maps for different [[block]]s.<ref name="infodump2">https://web.archive.org/web/0/https://www.mojang.com/2013/10/minecraft-1-7-the-update-that-changed-the-world</ref>}}
{{History||1.8|snap=14w31a|Zoomed maps now conform to an expanded grid based on their zoom level. Previously, careful considerations would need to be taken to creating a wall of adjoining maps.}}
{{History||1.8.1|snap=pre1|Some colors have been changed on maps to more accurately represent their respective [[block]].}}
{{History||1.9|snap=15w31a|Maps now display as a mini-map when held in the off-hand, or if the off-hand slot is occupied; the (old) large version is visible only when held in the dominant hand with the secondary hand free.}}
{{History|||snap=15w34a|New maps can now be [[crafting|crafted]] at a scale factor of 1:4.
|A crafting recipe has been added for zooming in maps.}}
{{History|||snap=15w43a|The average yield of empty maps from [[stronghold]] library [[chest]]s has been doubled.}}
{{History|||snap=15w45a|New maps are once again [[crafting|crafted]] at a scale factor of 1:1, as they had been before snapshot [[15w34a]].
|The [[crafting]] recipe, that was introduced in 15w34a, for zooming in maps has been removed.}}
{{History|||snap=15w49a|Map making now uses armor equipping sounds.}}
{{History||1.11|snap=16w39a|Maps now work in [[the End]].
|Empty maps are now [[trading|sold]] by cartographer [[villager]]s as their tier 3 [[trading|trade]].
|Added [[explorer map]]s, sold by cartographers as their tier 4 trades.}}
{{History||1.12|snap=17w17a|Maps now have separate colors for colored [[terracotta]] blocks from other colored blocks.}}
{{History||1.13|snap=17w47a|Prior to [[1.13/Flattening|''The Flattening'']], these [[item]]s' numeral IDs were 358 and 395.
|Maps now use additional NBT to specify which map they contain. Prior to this version, they used the [[damage]] value instead.
|Map IDs are no longer limited to 32,768.}}
{{History|||snap=17w50a|Maps can now be placed on floor and ceiling [[item frame]]s.}}
{{History|||snap=18w10a|Spots on maps can now be marked using [[banner]]s.}}
{{History|||snap=18w11a|Empty maps can now generate in [[shipwreck]] [[chest]]s.}}
{{History|||snap=pre7|Maps have been changed slightly, in regard to which [[block]]s are shown and which blocks are not.}}
{{History||1.14|snap=18w43a|[[File:Empty Map JE2 BE2.png|32px]] [[File:Map (item) JE2 BE2.png|32px]] The textures of maps have been changed.}}
{{History|||snap=18w48a|Empty maps can now be found in chests in [[village]] cartographer houses.}}
{{History|||snap=19w02a|Maps can now be cloned and zoomed out (extended) by using a [[cartography table]].
|Maps can now be locked by using a [[glass pane]] with a cartography table.
|The recipes for cloning and zooming out maps have been removed.}}
{{History|||snap=19w06a|Map making is now silent again.}}
{{History|||snap=19w13a|Cartographer villagers now give empty maps to players under the [[Hero of the Village]] effect.}}
{{History||1.16|snap=20w21a|Map making sounds are now the same as when using a cartography table.}}

{{History|pocket alpha}}
{{History||v0.14.0|snap=build 1|[[File:Empty Map JE1 BE1.png|32px]] [[File:Map (item) JE1 BE1.png|32px]] Added maps.
|Maps are crafted using nine [[paper]], one for every slot of the [[crafting]] grid.
|Maps must be combined with a [[compass]] using an [[anvil]] in order to show the [[player]]'s position.
|Maps can be zoomed using an anvil.}}
{{History|||snap=build 3|New maps are now [[crafting|crafted]] at full zoom.
|Empty maps now have a "Create Map" button to initialize them.}}
{{History|||snap=build 7|New maps are now crafted at a scale factor of 1:1.}}
{{History||v0.15.0|snap=unknown|Maps can now be crafted either with 8 pieces of [[paper]] and a [[compass]] ''or'' 9 pieces of paper, to get a map with or without a position marker.}}
{{History||v0.16.0|snap=build 1|Different colors have been added to maps for different [[biome]]s.}}
{{History|pocket}}
{{History||1.0.0|snap=?|[[Windows 10 Edition]] can now use the [[anvil]] as well as the [[crafting table]] to clone, zoom and apply markers, just as [[Pocket Edition]] in general could.
|Maps can now be found inside [[stronghold]] library [[chest]]s.}}
{{History||1.1.0|snap=alpha 1.1.0.0|Empty maps with direction markers built-in are now called "locator maps".}}
{{History|||snap=alpha 1.1.0.3|"Locator maps" are now called "empty locator maps".
|Empty maps are now [[trading|sold]] by cartographer [[villager]]s for 7-11 [[emerald]]s as their tier 3 [[trading|trade]].}}
{{History|bedrock}}
{{History||1.4.0|snap=beta 1.2.14.2|Maps can now be found inside map room [[chest]]s in [[shipwreck]]s.}}
{{History||?|The texture of the filled map overlay has been changed.}}
{{History||?|Maps now function in dimensions other than the dimension in which they were created.}}
{{History||1.10.0|snap=beta 1.10.0.3|Maps can now be found in cartographer house [[chest]]s in [[village]]s.
|[[File:Empty Map JE2 BE2.png|32px]] The texture of empty maps has been changed.}}
{{History||1.11.0|snap=beta 1.11.0.1|Empty maps can now be created from 1 [[paper]] in [[cartography table]]s.
|Maps can now be zoomed, cloned, renamed, and have pointers added in cartography tables.}}
{{History|||snap=beta 1.11.0.4|Cartographer [[villager]]s now [[trading|sell]] empty map for an [[emerald]] as their first tier [[trading|trades]].
|Empty locator maps can now be [[trading|bought]] from cartographer villagers.}}
{{History||1.13.0|snap=beta 1.13.0.1|[[File:Map (item) BE3.png|32px]] [[File:Locked Map (item) BE2.png|32px]] Filled maps and locked maps now have unique inventory icons.}}
{{History||1.16.0|snap=beta 1.16.0.57|Trading has been changed, novice-level cartographer now sell an empty map for 7 emeralds. Cartographer villager no longer sell empty locator map.}}
{{History||1.16.100|snap=beta 1.16.100.56|The ID of maps have been changed from <code>emptymap</code> to <code>empty_map</code> and <code>map</code> to <code>filled_map</code>.}}

{{History|console}}
{{History||xbox=TU1|xbone=CU1|ps=1.00|wiiu=Patch 1|switch=1.0.1|[[File:Map (item) JE1 BE1.png|32px]] Added maps. 
|The [[player]] spawns with a free map. 
|Maps are available only as zoom step 3 maps centered at coordinates 0,0. Biome colors do not appear on maps.}}
{{History||xbox=none|xbone=CU1|ps=1.0|wiiu=none|Larger sized worlds on Xbox One, Playstation 4, and Nintendo Switch have zoom step 3 maps aligned to a grid with maps centered at 0, 1024, or 2048 on the X or Z coordinates.}}
{{History||xbox=TU21|xbone=CU9|ps=1.14|wiiu=Patch 1|[[File:Empty Map JE1 BE1.png|32px]] [[Crafting]] a map now produces an empty map.}}
{{History||xbox=TU46|xbone=CU36|ps=1.38|wiiu=Patch 15|The outer end islands appear on different maps; even on Xbox 360, Playstation 3, Vita, and Wii U editions.}}
{{History||xbox=none|xbone=none|ps=1.90|wiiu=none|switch=none|[[File:Empty Map JE2 BE2.png|32px]] [[File:Map (item) JE2 BE2.png|32px]] The textures of maps have been changed.}}
{{History||ps=1.91|Maps can now be created and used in [[cartography table]]s.}}
{{History|foot}}

== Issues ==
{{issue list}}

== Trivia ==
* Use of the {{key|F1}} key can allow the player to hold a map without blocking their view at all.
* In ''Java Edition'', a map created using {{cmd|give}} can be any map by using the Map parameter to specify the map number desired. E.g. {{cmd|give [player] minecraft:filled_map{map:5<nowiki>}}} gives the specified player map_5. If no data value is supplied it defaults to map_0. If map_0 has not ever been crafted, it is centered on x=0, z=0.
* The maps are stored separately as their own data (<code>.dat</code>) file as <code>map_x.dat</code> with (x) being the map number, see [[map item format]] for more info. By manipulating this number, players can organize their maps to suit them, or if they accidentally create a map in the same location, they can delete their extra map so as to save the number they make.
* Certain programs can be used to make customized maps with images or text on them instead of actual maps, many people use these in adventure maps to show pictures or to tell a story.
* Since all copies of a map are links to the same file, copying an unfinished map keeps it synchronized with the copy as the player fills it in. Thus, a copy stored in a chest can act as a remote backup.
* A map that is in an item frame does not update itself until a player picks it up, lets it reload, and places it back again. However, if a player holds a clone of the map, both maps update.
* Filled maps are the only items that make 90 degree rotations in item frames, and also the only items that can expand the item frame into full block wide.
* On [[Legacy Console Edition]], the player always spawns with a map in their inventory after creating a world. This was later added to Bedrock Edition as an optional feature in the world creation menu.
* Maps on Legacy Console Edition always show the player's current coordinates, as a substitute for the optional [[Coordinates|coordinate display]] in other editions.
* A map cannot be created on [[New Nintendo 3DS Edition]]. Instead, the map is always displayed on the bottom screen along with the coordinates. Biome colors do not appear on maps.

== Gallery ==
<gallery>
MapItem1.png|A fully zoomed map.
MapRotation.png|Having a map in hand does not stop the ability to see ahead.
MapItem3.png|A world being recorded onto a map.
Mcmap4.png|Nearly fully explored map.
Zoomed Map.png|A map edited to the scale of 1.
Sky Map.png|A map mapping the [[Sky Dimension]].
MapOfVillage.png|A village and how it is represented on a map.
Pumpkin map.png|A map containing a custom image made by placing a large number of blocks.
Complete Map.png|A completely explored map.
MapZooms.png|A diagram showing how maps zoomed out before [[Java Edition 1.8]]. Notice how the larger maps have borders made of half and quarter small maps.
Map18zooms.png|From 1.8, zoomed maps are aligned to this grid exactly.
Large Biome Map.png|A map of a [[Large Biomes]] world.
Map0140-0160.png|A comparison of maps between versions in Pocket Edition Alpha [[Pocket Edition Alpha 0.14.0|0.14.0]] and [[Pocket Edition Alpha 0.16.0|0.16.0]].
Mycelium Map.png|A map view of a mushroom biome, showing that mycelium appears purple on a map.
MiniMap.png|Maps held in the off-hand or in either hand while [[dual wielding]] appear as mini-maps.
Partly filled treasure map.png|Partly filled treasure map with an odd area at the bottom left. Normally a partly filled map would look striped (as in the top left), but this map seems to be bugged and is possibly showing caves, or something, in the bottom left.
Partly filled ocean explorer map.png|Partly filled ocean explorer map. Updating the game from an older version (in this case the area was first generated before 1.18) and buying a map after updating (in this case in 1.19.4) can result in the map displaying rivers and terrain where there is really a frozen sea.
Map Stained Glass 1.png|Stained glasses' appearances on maps before and after 1.13.
Map Stained Glass 2.png|Stained glasses' appearances on maps before and after 1.13.
Map Various Blocks 1.png|Various blocks' appearances on maps before and after 1.13.
Map Various Blocks 2.png|Various blocks' appearances on maps before and after 1.13.
Better Together Map.jpg|Holding a map in the offhand in ''Bedrock Edition''.
Better Together Map Icon.jpg|Holding a map in both hands in ''Bedrock Edition''.
</gallery>

=== The Nether ===
<gallery>
Nethermap.png|A map in [[the Nether]].
Maponnether.png|A map in the Nether; the arrow turns around itself, like in [[compass]].
</gallery>

=== The End ===
<gallery>
Jeb End Map.png|The first image of a map in [[the End]].
Endmap.png|A map in the End.
</gallery>

=== Maps in item frames ===
<gallery>
FramedMap.png|A map displayed on an item frame, as it looked before [[Java Edition 1.7.2]].
Structure Map Collection.png|Multiple maps in item frames. Notice a [[village]], two [[desert temple]]s and a lava lake.
Minecraft maps 3by3.png|A collection of 9 connected full maps.
Full Map.png|A combination of 25 maps pasted together as one map.
Map wall BE.png|A map wall on ''Bedrock Edition'', showing large areas of biome colors for each biome.
Map's in item frames.png|Maps can be placed into [[item frame]]s so they can be viewed together.
Comparing Maps.png|The comparison between 3 zooms of maps.
SuperflatMap.png|A map in a [[Superflat]] world, with some [[village]]s.
MapWallWithMarkers.png|A 3x3 map wall with banner markers.
HEYYEYAAEYAAAEYAEYAA.png|He-Man map art.
Map Player Icons 1.png|First image of player icons on maps.
Map Player Icons 2.png|Second image of player icons on maps.
</gallery>

== See also ==
* [[Explorer Map]]
* [[Clock]]
* [[Tutorials/Navigation|Navigation]]

== References ==
{{Reflist}}

{{Items}}

[[cs:Mapa]]
[[de:Karte]]
[[es:Mapa]]
[[fr:Carte (objet)]]
[[hu:Térkép (tárgy)]]
[[ja:地図]]
[[ko:지도]]
[[nl:Kaart]]
[[pl:Mapa]]
[[pt:Mapa]]
[[ru:Карта]]
[[tr:Harita]]
[[th:แผนที่]]
[[uk:Мапа]]
[[zh:地图]]
[[Category:Renewable resources]]</li></ul></nowiki>
17w43aCustom loot tables have been moved into data packs.
1.14
{{Extension DPL}}<ul><li>[[Carrot|Carrot]]<br/>{{about|the natural food item|the golden food|Golden Carrot|the item for controlling saddled pigs|Carrot on a Stick}}
{{Item
| group = Age 0-1
| 1-1 = Carrots Age 0-1.png
| 1-2 = Carrots Age 0-1 BE.png
| group2 = Age 2-3
| 2-1 = Carrots Age 2-3.png
| 2-2 = Carrots Age 2-3 BE.png
| group3 = Age 4-6
| 3-1 = Carrots Age 4-6.png
| 3-2 = Carrots Age 4-6 BE.png
| group4 = Age 7
| 4-1 = Carrots Age 7.png
| 4-2 = Carrots Age 7 BE.png
| image2 = Carrot JE3 BE2.png
| renewable = Yes
| heals = {{hunger|3}}
| stackable = Yes (64)
}}
A '''carrot''' is a [[food]] [[item]] obtained from carrot crops that can be used to plant them, eaten or used as a crafting ingredient.

'''Carrot crops''' are planted in [[farmland]] and used to grow carrots.

== Obtaining ==

=== Breaking ===
{{See also|Fortune#Seeds}}
Fully grown carrot crops drop 2 to 5 carrots ({{frac|3|5|7}} per crop harvested on average). Yield can be increased using a tool enchanted with [[Fortune]], with Fortune III harvesting an average of {{frac|5|3|7}} carrots.

The yield is calculated by a binomial distribution: 2 drops are fixed, then a drop is attempted three times with a success rate of 57.14286% to yield the extra 0–3 drops. Each level of Fortune enchantment increases the number of attempts by one.

=== Natural generation ===
[[Village]] farm plots have a chance of having carrots. The exact chance depends on the style of the village:

{| class="wikitable"
! Village style !! Chance
|-
| {{EnvSprite|plains-village}} Plains || 30%
|-
| {{EnvSprite|snowy-village}} Snowy || 10%
|}

=== Mob loot ===
[[Zombie]]s, [[husk]]s, and [[zombie villager]]s have a 2.5% ({{frac|1|40}}) chance of dropping either an [[iron ingot]], carrot, or [[potato]] when killed by a player or tamed wolf. This is increased by 1% ({{frac|1|100}}) per level of looting. This gives carrots the following chances of dropping:
* {{frac|1|120}} (about 0.83%)
* {{frac|7|600}} (about 1.17%) with Looting I
* {{frac|9|600}} (about 1.50%) with Looting II
* {{frac|11|600}} (about 1.83%) with Looting III

=== Chest loot ===
{{LootChestItem|carrot}}

== Usage ==
{{see also|Tutorials/Hunger management|title1=Hunger management}}

To eat a carrot, press and hold {{control|use}} while the carrot is selected in the [[hotbar]]. Eating a carrot restores {{hunger|3}} [[hunger]] and 3.6 hunger [[Hunger#Mechanics|saturation]].

=== Farming ===
{{see also|Tutorials/Crop farming|title1 = Crop farming }}

Carrots can be [[farming|farmed]] and harvested on [[farmland]]. Planted carrots take 8 [[Block tick|stages]] to grow, and go through 4 visually distinct stages. Planted carrots require a light level of 9 or greater to continue growing. If the light level is 7 or below, the crops instantly un-plant themselves ("pop off"). It is not possible to plant carrots if the light level is too low.

Crops grow faster if the farmland they are planted in is [[Farmland#Hydration|hydrated]]. Using [[bone meal]] on crops also increases the speed of growth by randomly increasing their growth stage by 2 to 5.

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.

If {{cmd|gamerule mobGriefing}} is <code>true</code>, rabbits will find mature carrot [[crops]]{{only|je}} / carrot crops with growth stage greater than 1{{only|be}}. This reduces the growth stages by one, removing the crop completely when the growth stage reaches 0.

=== Breeding ===
Carrots can also be used to [[breed]] and attract [[pig]]s and [[rabbit]]s.

Villagers can pick up carrot items to become willing, which allow them to breed. Villagers require 12 carrots to become willing.

=== Trading ===
Novice-level Farmer villagers have a 25% ({{frac|1|4}}){{only|bedrock}} or 40% ({{frac|2|5}}){{only|java}} chance to buy 22 carrots for an emerald.

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

=== Composting ===
Placing a carrot into a [[composter]] has a 65% chance of raising the compost level by 1.

== Sounds ==

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

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

== Data values ==

=== ID ===
{{edition|java}}:
{{ID table
|edition=java
|showblocktags=y
|showforms=y
|generatetranslationkeys=y
|displayname=Carrots
|spritetype=block
|nameid=carrots
|blocktags=bee_growables, crops
|form=block}}
{{ID table
|displayname=Carrot
|spritetype=item
|nameid=carrot
|form=item
|foot=1}}

{{edition|bedrock}}:
{{ID table
|edition=bedrock
|showforms=y
|shownumericids=y
|generatetranslationkeys=y
|displayname=Carrots
|spritetype=block
|nameid=carrots
|id=141
|form=block
|translationkey=-}}
{{ID table
|displayname=Carrot
|spritetype=item
|nameid=carrot
|id=279
|form=item
|foot=1}}

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

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

== History ==
{{History|java}}
{{History||1.4.2|snap=12w34a|[[File:Carrot JE1.png|32px]] Added carrots. 
|[[File:Carrots Age 0-1 JE1.png|32px]] [[File:Carrots Age 2-3 JE1.png|32px]] [[File:Carrots Age 4-6 JE1.png|32px]] [[File:Carrots Age 7 JE1.png|32px]] Added carrot crops.
|Carrots can be obtained only as a rare [[drop]] from [[zombie]]s.}}
{{History|||snap=August 28, 2012|slink={{tweet|Dinnerbone|240428477856231424}}|[[Dinnerbone]] released an image of a [[saddle]]d [[pig]] being controlled with a [[carrot on a stick]]. [[Wheat]] was considered as a "fuel" along with carrots,<ref>{{Tweet|Dinnerbone|240188453789257728}}</ref> but Dinnerbone eventually decided on carrots.<ref>{{Tweet|Dinnerbone|240355810650247168}}</ref>}}
{{History|||snap=12w34a|Carrots can now be used to craft [[golden carrot]]s.}}
{{History|||snap=12w36a|Carrots can now be found in [[village]]s.
|Carrots are now used to breed [[pig]]s.
|Carrots are now used to craft [[carrot on a stick]].}}
{{History|||snap=12w37a|[[File:Carrot JE2 BE1.png|32px]] The texture of carrots has now been changed. The texture has been changed to singular carrot, with the tooltip changed to reflect this.}}
{{History||1.5|snap=13w04a|[[Bone meal]] now grows carrots by 1 stage instead of fully growing it. The [[player]] might not see it grow, because some stages look the same.}}
{{History||1.8|snap=14w02a|Carrots now restore {{hunger|3}} points and 3.6 hunger [[saturation]], instead of {{hunger|4}} and 4.8 hunger saturation.
|Farmer [[villager]]s now [[trading|buy]] 15–19 carrots for 1 [[emerald]].}}
{{History|||snap=14w04a|[[Farmer]] (profession) [[villager]]s now harvest fully grown carrots.
|Villagers can now be made willing using 12 carrots.}}
{{History|||snap=14w06a|[[File:Carrots Age 0-1 JE2.png|32px]] [[File:Carrots Age 2-3 JE2.png|32px]] [[File:Carrots Age 4-6 JE2.png|32px]] [[File:Carrots Age 7 JE2.png|32px]] Carrot crops are now a pixel higher - previously they were offset one pixel down as to match farmland's sunken model. This is likely an accidental result of model conversion.}}
{{History|||snap=14w10a|[[File:Missing Model JE2.png|32px]] [[File:Missing Model JE2.png|32px]] [[File:Missing Model JE2.png|32px]] [[File:Missing Model JE2.png|32px]]<br>[[File:Missing Model (anisotropic filtering) JE2.png|32px]] [[File:Missing Model (anisotropic filtering) JE2.png|32px]] [[File:Missing Model (anisotropic filtering) JE2.png|32px]] [[File:Missing Model (anisotropic filtering) JE2.png|32px]]<br>Carrot crops of all stages [[Missing model|no longer have a model]].}}
{{History|||snap=14w10b|[[File:Carrots Age 0-1 JE4.png|32px]] [[File:Carrots Age 2-3 JE4.png|32px]] [[File:Carrots Age 4-6 JE4.png|32px]] [[File:Carrots Age 7 JE4.png|32px]] Carrot crops now have models again.<ref>{{bug|MC-50232}}</ref> In addition, they are now offset downwards by one pixel once more.<ref>{{bug|MC-50155}}</ref>}}
{{History|||snap=14w25a|[[File:Carrots Age 0-1 JE5.png|32px]] [[File:Carrots Age 2-3 JE5.png|32px]] [[File:Carrots Age 4-6 JE5.png|32px]] [[File:Carrots Age 7 JE5.png|32px]] Carrot crops are now darker and subject to directional shading.}}
{{History|||snap=14w27a|[[File:Carrots Age 0-1 JE6.png|32px]] [[File:Carrots Age 2-3 JE6.png|32px]] [[File:Carrots Age 4-6 JE6.png|32px]] [[File:Carrots Age 7 JE6.png|32px]] Carrot crops are no longer subject to directional shading.
|Added [[rabbit]]s, which can be [[breeding|bred]] and/or tamed using carrots. Rabbits also grief carrot crops.
|Carrots are now used to craft [[rabbit stew]].}}
{{History|||snap=14w34a|Rabbits can no longer be tamed.}}
{{History||1.9|snap=15w38a|The [[drops|drop]] chances have now been slightly improved from an average of {{frac|2|3|5}} per [[crops|crop]] harvested to {{frac|2|5|7}}.}}
{{History||1.13|snap=17w47a|Prior to [[1.13/Flattening|''The Flattening'']], this block's numeral ID was 141, and the item's 391.}}
{{History|||snap=18w11a|Carrots can now generate in the chests of [[shipwreck]]s.}}
{{History||1.14|snap=18w43a|[[File:Carrot JE3 BE2.png|32px]] The texture of carrots has now been changed.
|[[File:Carrots Age 0-1 JE7.png|32px]] [[File:Carrots Age 2-3 JE7.png|32px]] [[File:Carrots Age 4-6 JE7.png|32px]] [[File:Carrots Age 7 JE7.png|32px]] The textures of carrot crops have now been changed.}}
{{History|||snap=18w47a|Carrots can now generate in the [[chest]]s of [[pillager outpost]]s.}}
{{History|||snap=19w03a|Placement and breaking [[sound]]s have now been added to carrots.
|Placing a carrot into the new [[composter]] has a 50% chance of raising the compost level by 1.}}
{{History|||snap=19w05a|Carrots now have a 65% chance of increasing the compost level in a composter by 1.}}
{{History||1.15|snap=19w34a|[[Bee]]s can now pollinate carrot crops.}}
{{History||1.17|snap=21w13a|[[File:Carrots Age 0-1 JE8.png|32px]] [[File:Carrots Age 2-3 JE8.png|32px]] [[File:Carrots Age 4-6 JE8.png|32px]] [[File:Carrots Age 7 JE8.png|32px]] The "crop" template model has changed such that pixels appear in the same physical positions on opposite sides of texture planes, changing the carrot crop's appearance in the process.<ref>{{bug|MC-199242}}</ref>}}
{{History||1.18|snap=Pre-release 5|[[File:Carrots Age 7 JE9.png|32px]] A stray dark pixel has been removed from the texture of fully-grown carrots.<ref>{{bug|MC-226711}}</ref>}}

{{History|pocket alpha}}
{{History||v0.8.0|snap=build 1|[[File:Carrot JE2 BE1.png|32px]] Added carrots.
|[[File:Carrots Age 0-1 JE6 BE1.png|32px]] [[File:Carrots Age 2-3 JE6 BE1.png|32px]] [[File:Carrots Age 4-6 JE6 BE1.png|32px]] [[File:Carrots Age 7 JE6 BE1.png|32px]]{{verify|Correct models?}} Added carrot crops.
|Carrots can be obtained by killing [[zombie]]s.}}
{{History|||snap=build 3|Carrots now have a chance to [[drops|drop]] when tilling [[grass block]]s.}}
{{History|||snap=build 4|Carrots are no longer dropped by tilling [[grass block]]s.}}
{{History||v0.9.0|snap=build 1|Carrot crops now naturally spawn in [[village]]s.
|Carrot now used to breed [[pig]]s.}}
{{History||v0.12.1|snap=build 1|Carrots now restore [[hunger]] instead of [[health]].
|Brown robed [[villager]]s can now harvest fully grown carrot crops.
|Carrots can now be used to craft [[golden carrot]]s.}}
{{History||v0.13.0|snap=build 1|Carrots can now be used to breed [[rabbit]]s.
|Carrots can now be used to craft [[rabbit stew]].}}
{{History||v0.15.0|snap=build 1|Carrots are now used to craft [[carrot on a stick]].}}
{{History||v0.16.2|Carrots can now be found in a [[chest]] inside the large house in [[snowy tundra]] and [[snowy taiga]] [[village]]s.}}
{{History|pocket}}
{{History||1.0.4|snap=alpha 1.0.4.0|Farmer [[villager]]s now [[trading|buy]] 15–19 carrots for 1 [[emerald]].
|Carrots can now be picked up by villagers and become willing.}}
{{History|bedrock}}
{{History||1.2.0|snap=beta 1.2.0.2|Carrots can now be found inside of [[bonus chest]]s.}}
{{History||1.4.0|snap=beta 1.2.14.2|Carrots can now be found inside [[shipwreck]] chests.}}
{{History||1.10.0|snap=beta 1.10.0.3|Carrots can be found in the new [[pillager outpost]]s.
|[[File:Carrot JE3 BE2.png|32px]] The texture of carrots has now been changed.
|[[File:Carrots Age 0-1 JE7.png|32px]] [[File:Carrots Age 2-3 JE7.png|32px]] [[File:Carrots Age 4-6 JE7.png|32px]] [[File:Carrots Age 7 JE7.png|32px]]{{verify|Correct models?}} The textures of carrot crops have now been changed.}}
{{History||1.11.0|snap=beta 1.11.0.1|Carrots can now be used to fill up [[composter]]s.}}
{{History|||snap=beta 1.11.0.4|[[Trading]] has now been changed, farmer [[villager]]s now have a 25% chance to [[trading|buy]] 22 carrots for an [[emerald]].}}
{{History||1.14.0|snap=beta 1.14.0.1|[[Bee]]s can now pollinate carrot crops.}}
{{History||?|[[File:Carrots Age 0-1 BE.png|32px]] [[File:Carrots Age 2-3 BE.png|32px]] [[File:Carrots Age 4-6 BE.png|32px]] [[File:Carrots Age 7 BE.png|32px]] Carrot crop planes use a mapping that results in very unnatural mirroring when viewed from certain angles, such as northwest.<ref>{{bug|MCPE-146936}}</ref>}}

{{History|console}}
{{History||xbox=TU14|xbone=CU1|ps=1.04|wiiu=Patch 1|switch=1.0.1|[[File:Carrot JE2 BE1.png|32px]] Added carrots.
|[[File:Carrots Age 0-1 JE6 BE1.png|32px]] [[File:Carrots Age 2-3 JE6 BE1.png|32px]] [[File:Carrots Age 4-6 JE6 BE1.png|32px]] [[File:Carrots Age 7 JE6 BE1.png|32px]]{{verify|Correct models?}} Added carrot crops.}}
{{History||xbox=none|xbone=none|ps=1.90|wiiu=none|switch=none|[[File:Carrot JE3 BE2.png|32px]] The texture of carrots has now been changed.
|[[File:Carrots Age 0-1 JE7.png|32px]] [[File:Carrots Age 2-3 JE7.png|32px]] [[File:Carrots Age 4-6 JE7.png|32px]] [[File:Carrots Age 7 JE7.png|32px]]{{verify|Correct models?}} The textures of carrot crops have now been changed.}}
{{History||xbox=none|xbone=none|ps=1.91|wiiu=none|switch=none|Carrots can now be used to fill up [[composter]]s.}}

{{History|New 3DS}}
{{History||0.1.0|[[File:Carrot JE2 BE1.png|32px]] Added carrots.
|[[File:Carrots Age 0-1 JE6 BE1.png|32px]] [[File:Carrots Age 2-3 JE6 BE1.png|32px]] [[File:Carrots Age 4-6 JE6 BE1.png|32px]] [[File:Carrots Age 7 JE6 BE1.png|32px]]{{verify|Correct models?}} Added carrot crops.}}
{{History|foot}}

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

== Issues ==
{{issue list}}

== Gallery ==
<gallery>
AllSeeds.png|All the seeds that exist in the game (except [[nether wart]] and [[cocoa beans]]).
VillageGrowingCarrotsAndPotatoes.png|Carrots and [[potato]]es found growing naturally in a [[village]].
Carrots Growing.png|Carrots in multiple stages of growth.
Carrot Dungeon.jpg|A carrot that dropped from a zombie, just to the right of the [[spawner]].
Carrot SDGP.png|Carrot in the [[Super Duper Graphics Pack]].
</gallery>

== References ==
{{reflist}}

{{Items}}
{{blocks|vegetation}}

[[Category:Plants]]
[[Category:Food]]
[[Category:Renewable resources]]
[[Category:Non-solid blocks]]
[[Category:Generated structure blocks]]

[[cs:Mrkev]]
[[de:Karotte]]
[[es:Zanahoria]]
[[fr:Carotte]]
[[hu:Sárgarépa]]
[[ja:ニンジン]]
[[ko:당근]]
[[lzh:胡蘿蔔]]
[[nl:Wortel]]
[[pl:Marchewka]]
[[pt:Cenoura]]
[[ru:Морковь]]
[[th:แคร์รอต]]
[[uk:Морква]]
[[zh:胡萝卜]]</li><li>[[Spyglass|Spyglass]]<br/>{{Item
| title = Spyglass
| image = Spyglass.png
| durability = 
| rarity = Common
| renewable = Yes
| stackable = No
}}
 
A '''spyglass''' is a [[tool]] used to zoom in on distant objects.

== Obtaining ==
=== Crafting ===
{{Crafting
  |B1=Amethyst Shard
  |B2=Copper Ingot
  |B3=Copper Ingot
  |Output=Spyglass
  |type=Tool
}}

== Usage ==
[[File:Steve scoping Spyglass.png|right|100px]] [[File:Alex scoping Spyglass.png|right|100px]]

To use a spyglass, the player selects it from the hotbar and clicks {{control|use}} while looking in the desired direction.

Spyglasses are used to zoom in on a specific location in the player's field of view (FOV). The spyglass changes the FOV to {{frac|1|10}} of the FOV set in [[options]]. By default, the FOV is set to 70° in ''Java Edition'' and 60° in Bedrock Edition, resulting in an FOV of 7° in ''Java Edition'' and 6° in Bedrock Edition through the spyglass. The player's FOV can be set from 30° to 110°, so the spyglass FOV can  range from 3° to 11°. Regardless of the situation, or status effects the player has, using the Spyglass always shows a FOV {{frac|1|10}} of the FOV set in [[options]].

A square vignette is applied when in use, similar to the effect when wearing a [[carved pumpkin]]. Pressing {{key|F1}} removes the vignette,{{only|java}}<ref>{{bug|MC-203575||The spyglass overlay goes away when pressing F1|WAI}}</ref><ref>{{bug|MCPE-125869||Spyglass's overlay don't go away even if the player toggles Hide GUI on/ Pressing F1|}}</ref> similar to a carved pumpkin. 

Hazy distant objects remain hazy when viewed in the spyglass. Mobs too distant to render also do not render in the spyglass. The spyglass shows a magnified view of what the player already sees.

The player is slowed down while watching through the spyglass. When the player uses the spyglass continuously for {{convert|1|minute|game tick}}, the interface is automatically closed.

If the player has a certain effect on their screen like [[fire]], the spyglass does not remove that effect on the player's screen.

[[File:Spyglass Zooming.gif|thumb|center|A spyglass being used to zoom in on a [[block of gold]] starting from normal FOV (70°).]]

== Sounds ==
{{edition|java}}:
{{Sound table
|sound=Spyglass use.ogg
|subtitle=Spyglass expands
|source=player
|description=When a player uses a spyglass
|id=item.spyglass.use
|translationkey=subtitles.item.spyglass.use
|volume=0.5
|pitch=''varies'' <ref group=sound>Can be 1.15, 1.33, 1.4, or 1.55</ref>
|distance=16}}
{{Sound table
|sound=Spyglass stop.ogg
|subtitle=Spyglass retracts
|source=player
|description=When a player stops using a spyglass
|id=item.spyglass.stop_using
|translationkey=subtitles.item.spyglass.stop_using
|volume=0.5
|pitch=''varies'' <ref group=sound>Can be 1.0, 0.8, or 0.9</ref>
|distance=16
|foot=1}}

{{edition|bedrock}}:
{{Sound table
|type=bedrock
|sound=Spyglass use.ogg
|source=player
|description=When a player uses a spyglass
|id=item.spyglass.use
|volume=0.5
|pitch=1.15-1.55}}
{{Sound table
|sound=Spyglass stop.ogg
|source=player
|description=When a player stops using a spyglass
|id=item.spyglass.stop_using
|volume=0.5
|pitch=0.8-1.0
|foot=1}}

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

{{edition|bedrock}}:
{{ID table
|edition=bedrock
|shownumericids=y
|showforms=y
|notshowbeitemforms=y
|generatetranslationkeys=y
|displayname=Spyglass
|spritetype=item
|nameid=spyglass
|form=item
|foot=1|id=626}}

== Advancements ==
{{load advancements|Is it a Bird?;Is it a Balloon?;Is it a Plane?}}

== History ==
{{History||October 3, 2020|link={{ytl|DBvZ2Iqmm3M|t=25m21s}}|[[File:Spyglass JE1.png|32px]]<!-- [[File:Spyglass scope (pre-release).png|32px]]--> Spyglasses are revealed at [[Minecraft Live 2020]]. They were originally named "telescopes" and had an oval vignette.}}
{{History|java}}
{{History||1.17|snap=20w45a|[[File:Spyglass JE1.png|32px]] Added spyglasses.
|[[File:Spyglass scope JE1.png|32px]] The scope texture is currently a circle with glare spots.}}
{{History|||snap=20w46a|[[File:Spyglass scope JE2.png|32px]] The scope texture is now a [[glass]] square with a [[copper]] border.}}
{{History|||snap=20w48a|[[File:Spyglass JE2 BE1.png|32px]] The spyglass is now a 3D model instead of a flat sprite.
|[[File:Spyglass (texture) JE2.png|32px]] The texture of the spyglass has changed.
|A spyglass in use is anchored better to the player's "eye" when viewed in 3rd person.}}
{{History|||snap=21w05a|Copper ingots are now renewable via [[drowned]], making spyglasses renewable.}}
{{History|||snap=21w10a|[[File:Spyglass (item) JE3 BE1.png|32px]] Spyglasses have a new texture in the inventory. The 3D model is still used in the hand, similar to [[tridents]].}}
{{History||1.17.1|snap=Pre-release 1|[[File:Spyglass (texture) JE3.png|32px]] The texture of the spyglass model has changed.}}
{{History|bedrock}}
{{History||1.17.0|snap=beta 1.17.0.50|[[File:Spyglass JE2 BE1.png|32px]] [[File:Spyglass (item) JE3 BE1.png|32px]] Added spyglasses.}}
{{History|||snap=beta 1.17.0.52|Spyglasses are now available without enabling [[experimental gameplay]].}}
{{History|foot}}

== Issues ==
{{Issue list}}

== Trivia ==
*If {{command|item replace}} is used to place a spyglass on a player's head, the item appears stuck to the center of the player's face.

== Gallery ==
<gallery>
Villager Spyglass.png|Spying on [[villager]]s through a spyglass.
After using the spyglass at FOV 30 F1.png|Hiding the HUD removes the spyglass overlay.
Panda eating a spyglass.png|When eaten by a [[panda]], spyglasses cause [[missing texture]] particles to be produced.<ref>{{bug|MC-206684}}</ref>
JE 1.17 Development Telescope.jpg|The spyglass was originally called the telescope.
JE 1.17 Development Telescope 2.jpg|The telescope's overlay was originally round instead of square.
File:Ari Spyglass.jpg|How the spyglass looks in the third person.
Steve scoping Spyglass JE1.png|Steve using a spyglass before its 3D model was added.
Alex scoping Spyglass JE1.png|Alex using a spyglass before its 3D model was added.
File:Mangrove Portal.jpg|An [[allay]] peeking into view of [[Noor]]’s spyglass.
</gallery>

== References ==
{{Reflist}}

== External Links ==
*[https://www.minecraft.net/en-us/article/taking-inventory--spyglass Taking Inventory: Spyglass] – Minecraft.net on February 17, 2022

{{Items}}

[[Category:Renewable resources]]

[[de:Fernrohr]]
[[es:Catalejo]]
[[fr:Longue-vue]]
[[it:Cannocchiale]]
[[ja:望遠鏡]]
[[pl:Luneta]]
[[pt:Luneta]]
[[ru:Подзорная труба]]
[[zh:望远镜]]</li></ul>
18w43aBlock drops have been changed to use loot tables.
Loot tables received several new options.
Setting entity to "this" now refers to the player in chest and block loot tables.
18w44aAdded loot tables for cats, cat_morning_gift, players and withers.
Added loot tables for new blocks.
Added the function set_lore.
18w46aAdded loot table for illusioners.
18w48aAdded more loot tables for villages, some of which are currently unused.
Removed loot table: village_blacksmith.
18w49avillage_savanna_house and village_snowy_house loot tables are now used.
Added more loot tables for villages.
18w50avillage_desert_house and village_taiga_house loot tables are now used, making all previously unused loot tables no longer unused.
?Empty loot table is now hardcoded.
1.15
{{Extension DPL}}<ul><li>[[Magma Cream|Magma Cream]]<br/>{{Item
| title = Magma Cream
| image = Magma Cream.png
| renewable = Yes
| stackable = Yes (64)
}}

'''Magma cream''' is an [[item]] used in [[brewing]] to create [[potion]]s of [[Fire Resistance]], and to manually craft [[magma block]]s.

== Obtaining ==

=== Mob loot ===

==== Magma cubes ====

All but tiny-sized [[magma cube]]s drop 0–1 magma cream. The maximum amount of magma cream is increased by 1 per level of [[Looting]], for a maximum of 4 with Looting III.

=== Crafting ===

{{Crafting
|Blaze Powder
|Slimeball
|Output= Magma Cream
|type= Brewing
}}

=== Chest Loot ===
{{LootChestItem|magma-cream}}

== Usage ==

=== Brewing ingredient ===

{{brewing
  |showname=1
  |head=1
  |Magma Cream|Mundane Potion|base=Water Bottle
}}
{{brewing
  |foot=1
  |Magma Cream
  |Potion of Fire Resistance
}}

=== Crafting ingredient ===

{{crafting usage}}

== Data values ==
=== ID ===
{{edition|java}}:
{{ID table
|edition=java
|showforms=y
|generatetranslationkeys=y
|displayname=Magma Cream
|spritetype=item
|nameid=magma_cream
|form=item
|foot=1}}

{{edition|bedrock}}:
{{ID table
|edition=bedrock
|shownumericids=y
|showforms=y
|notshowbeitemforms=y
|generatetranslationkeys=y
|displayname=Magma Cream
|spritetype=item
|nameid=magma_cream
|id=430
|form=item
|foot=1}}

== History ==

{{History|java}}
{{History||1.0.0|snap=Beta 1.9 Prerelease 2|[[File:Magma Cream JE1.png|32px]] Added magma cream.}}
{{History|||snap=Beta 1.9 Prerelease 3|Magma cream can now be [[brewing|brewed]] in a [[water bottle]] to create a mundane [[potion]], or in an awkward potion to create a potion of [[Fire Resistance]].}}
{{History||1.1|snap=release|[[Magma cube]]s now [[drops|drop]] magma cream.}}
{{History||1.3.1|snap=1.3|[[File:Magma Cream JE2 BE1.png|32px]] The texture of magma cream has been changed.}}
{{History||1.10|snap=16w20a|Magma cream can now be [[crafting|crafted]] into [[magma block]]s.}}
{{History||1.13|snap=17w47a|Prior to [[1.13/Flattening|''The Flattening'']], this [[item]]'s numeral ID was 378.}}
{{History||1.14|snap=18w43a|[[File:Magma Cream JE3 BE2.png|32px]] The texture of magma cream has been changed.}}
{{History||1.16|snap=20w07a|Magma cream has a {{frac|2|109}} (~1.83%) chance of being offered by [[piglin]]s when [[bartering]], in a stack size of 1–3.}}
{{History|||snap=20w09a|Magma cream now has a {{frac|10|226}} (~4.42%) chance of being offered by piglins when bartering, in a stack size of 1–5.}}
{{History|||snap=20w16a|Magma cream now generates in [[bastion remnant]]s chests.}}
{{History||1.16.2|snap=20w28a|Magma cream can no longer be obtained from bartering with piglins.}}
{{History|||snap=20w30a|The average yield of magma cream from bastion remnant chests has been slightly increased.}}

{{History|pocket edition alpha}}
{{History||v0.11.0|snap=build 1|[[File:Magma Cream JE2 BE1.png|32px]] Added magma cream.
|Magma cream is currently unobtainable.}}
{{History||v0.11.0|snap=build 8|[[Magma cube]]s now [[drops|drop]] magma cream.}}
{{History||v0.12.1|snap=build 1|Added magma cream to the [[Creative]] mode [[inventory]].
|Magma cream can now be [[crafting|crafted]].}}
{{History|pocket}}
{{History||1.1.3|snap=alpha 1.1.3.0|Magma cream can now be crafted into [[magma block]]s.}}
{{History|bedrock}}
{{History||1.10.0|snap=beta 1.10.0.3|[[File:Magma Cream JE3 BE2.png|32px]] The texture of magma cream has been changed.}}
{{History||1.16.0|snap=beta 1.16.0.57|Magma cream can be obtained from bartering with piglins.
|Magma cream can now be found in [[bastion remnants]] chests.}}
{{History||1.16.100|snap=beta 1.16.100.54|Magma cream can no longer be obtained from [[barter]]ing with [[piglin]]s.}}

{{History|console}} 
{{History||xbox=TU7|xbone=CU1|ps=1.0|wiiu=Patch 1|switch=1.0.1|[[File:Magma Cream JE2 BE1.png|32px]] Added magma cream.}}
{{History||xbox=none|xbone=none|ps=1.90|wiiu=none|switch=none|[[File:Magma Cream JE3 BE2.png|32px]] The texture of magma cream has been changed.}}

{{History|New 3DS}}
{{History||0.1.0|[[File:Magma Cream JE2 BE1.png|32px]] Added magma cream.}}
{{history|foot}}

== Issues ==

{{issue list}}

{{items}}

[[Category:Renewable resources]]

[[cs:Lávová pěna]]
[[de:Magmacreme]]
[[es:Crema de magma]]
[[fr:Crème de magma]]
[[hu:Magmakrém]]
[[ja:マグマクリーム]]
[[ko:마그마 크림]]
[[lzh:火漿膏]]
[[nl:Magmacrème]]
[[pl:Magmowy krem]]
[[pt:Creme de magma]]
[[ru:Лавовый крем]]
[[th:ครีมแมกม่า]]
[[uk:Магмовий крем]]
[[zh:岩浆膏]]</li><li>[[Lava Bucket|Lava Bucket]]<br/>{{Item
| title = Lava Bucket
| image = Lava Bucket.png
| renewable = Yes
| stackable = No 
}}
A '''lava bucket''' is a [[bucket]] filled with [[lava]].

== Obtaining ==
=== Interacting ===
To fill an empty [[bucket]] with lava, {{control|use}} it on a [[lava]] source block or lava in a [[cauldron]]. The block is consumed in the process. Flowing lava does not fill a bucket.

If there is a lava source above the [[pointed dripstone]] stalactite, there is a {{frac|15|256}} (~5.9%) chance for it to completely fill an empty cauldron within 10 blocks under the tip with lava after a [[random tick]]. This lava can then be scooped with a bucket, making it a renewable resource.

==Usage==
A lava bucket can be used to place down lava sources with the {{key|Use Item}} button. Doing so gives the player the bucket back. Lava buckets can be used to replace some transparent, non-full blocks such as [[tall grass]] and [[water]], both flowing and sources.

{{IN|java}}, lava buckets can be used to break [[Nether Portal (block)|Nether portal blocks]] by placing the lava on the side of a block next to the portal block.

=== Smelting ===
A lava bucket can be used as an efficient [[fuel]]. It has the longest burning value of 1000 seconds, compared to 800 seconds for a [[coal block]] (a lava bucket smelts 100 items, and a coal block smelts 80). After smelting starts, the lava bucket turns into an empty bucket.

=== Trading ===
{{IN|bedrock}}, journeyman-level armorer villagers buy a lava bucket for one [[emerald]] as part of their trades.

{{IN|java}}, journeyman-level armorer villagers have a 40% chance of offering to buy a lava bucket for one emerald.

=== Cauldrons === 
A lava bucket can be used to fill a [[cauldron]] with lava. The lava damages any entity standing inside the cauldron, unless the entity is immune to fire damage.<!-- ex: nether mobs--> Flowing water or waterlogging does not affect the lava in the cauldron.

== Sounds ==
{{el|je}}:
{{Sound table
|sound=Fill lava bucket1.ogg
|sound2=Fill lava bucket2.ogg
|sound3=Fill lava bucket3.ogg
|subtitle=Bucket fills
|source=player
|description=When a bucket is filled with lava
|id=item.bucket.fill_lava
|translationkey=subtitles.item.bucket.fill
|volume=1.0
|pitch=1.0
|distance=16}}
{{Sound table
|sound=Empty lava bucket1.ogg
|sound2=Empty lava bucket2.ogg
|sound3=Empty lava bucket3.ogg
|subtitle=Bucket empties
|source=block
|description=When a lava bucket is emptied
|id=item.bucket.empty_lava
|translationkey=subtitles.item.bucket.empty
|volume=1.0
|pitch=1.0
|distance=16
|foot=1}}

{{el|be}}:
{{Sound table
|type=bedrock
|sound=Fill lava bucket1.ogg
|sound2=Fill lava bucket2.ogg
|sound3=Fill lava bucket3.ogg
|source=block
|description=When a bucket is filled with lava
|id=bucket.fill_lava
|volume=1.0
|pitch=1.0}}
{{Sound table
|sound=Empty lava bucket1.ogg
|sound2=Empty lava bucket2.ogg
|sound3=Empty lava bucket3.ogg
|source=block
|description=When a lava bucket is emptied
|id=bucket.empty_lava
|volume=1.0
|pitch=1.0
|foot=1}}

==Data values==
=== ID ===
{{edition|java}}:
{{ID table
|edition=java
|showforms=y
|generatetranslationkeys=y
|displayname=Lava Bucket
|spritetype=item
|nameid=lava_bucket
|form=item
|foot=1}}

{{edition|bedrock}}:
{{ID table
|edition=bedrock
|showaliasids=y
|shownumericids=y
|showforms=y
|notshowbeitemforms=y
|generatetranslationkeys=y
|displayname=Lava Bucket
|spritetype=item
|nameid=lava_bucket
|aliasid=bucket / 10
|id=363
|form=item
|translationkey=item.bucketLava.name
|foot=1}}

== Achievements ==
{{load achievements|Super Fuel}}

== Advancements ==
{{Load advancements|Hot Stuff}}

==History==
{{History|java infdev}}
{{History||20100615|[[File:Lava Bucket JE1 BE1.png|32px]] Added lava buckets.}}
{{History|java alpha}}
{{History||v1.1.0|Buckets of lava can now be used to fuel a [[furnace]] for 100 [[smelting|smelts]], consuming the [[lava]] and the [[bucket]]. This is the highest number of smelts of any single [[item]] in the game.}}
{{History||v1.2.6|{{control|use|text=Using}} a lava bucket on [[block]]s with GUIs ([[chest]]s, furnaces, etc.) no longer places the lava.}}
{{History|java}}
{{History||1.2.1|snap=1.2|Changed name from "Lava bucket" to "Lava Bucket".}}
{{History||1.3|snap=12w22a|[[Smelting]] in a [[furnace]] with a lava bucket now leaves an empty [[bucket]] for the [[player]] to retrieve.}}
{{History||1.8|snap=14w25a|A lava bucket is now shown as the icon when [[lava]] is used as a layer in [[Superflat]].}}
{{History||1.9|snap=15w50a|Added sounds for filling and pouring lava buckets.}}
{{History||1.13|snap=17w47a|Prior to the ''[[Flattening]]'' this item's numerical ID was 327.}}
{{History||1.14|snap=18w43a|[[File:Lava Bucket JE2 BE2.png|32px]] The texture of lava buckets has been changed.}}
{{History|||snap=19w11a|Armorer villagers can now [[trading|buy]] lava buckets.}}
{{History||1.17|snap=20w45a|Lava buckets can now be used to fill a [[cauldron]] with lava.}}
{{History|||snap=21w13a|The lava bucket is now fully renewable, as [[pointed dripstone]] can now be obtained in Survival mode without custom generation.}}

{{History|pocket alpha}}
{{History||v0.7.0|[[File:Lava Bucket JE1 BE1.png|32px]] Added lava buckets.}}
{{History||v0.7.4|Lava buckets can now be used as [[fuel]] in a [[furnace]].
|Lava buckets no longer stack to 64.}}
{{History|bedrock}}
{{History||1.4.0|snap=beta 1.2.14.2|Moved all bucket items, including lava buckets, from the Equipment tab to the Items tab in the [[Creative inventory]].{{verify|type=update}}{{info needed}}<!---please check snapshots, only 1 major release version was checked each--->}}
{{History||1.9.0|snap=beta 1.9.0.2|Lava bucket can now be used to fill a [[cauldron]].}}
{{History||1.10.0|snap=beta 1.10.0.3|[[File:Lava Bucket JE2 BE2.png|32px]] The texture of lava buckets has been changed.}}
{{History||1.11.0|snap=beta 1.11.0.4|Lava buckets can now be [[trading|sold]] to armorer [[villager]]s.}}
{{History||1.16.100|snap=beta 1.16.100.56|The ID of lava buckets has been changed from <code>bucket/10</code> to <code>lava_bucket</code>.}}
{{History||1.17.0|snap=beta 1.16.230.54|The lava bucket is now fully renewable, as [[pointed dripstone]] can now be obtained in Survival mode without custom generation.}}

{{History|console}}
{{History||xbox=TU1|xbone=CU1|ps=1.0|wiiu=Patch 1|switch=1.0.1|[[File:Lava Bucket JE1 BE1.png|32px]] Added lava buckets.}}
{{History||xbox=TU9|[[Dispenser]]s have now been given the ability to shoot out the [[liquids]] inside lava buckets. They can also suck up the liquids if activated again, but do not fill up the [[bucket]]s with the liquid dropped due to a bug.}}
{{History||xbox=none|xbone=none|ps=1.90|wiiu=none|switch=none|[[File:Lava Bucket JE2 BE2.png|32px]] The texture of lava buckets has been changed.}}

{{History|New Nintendo 3DS Edition}}
{{History||0.1.0|[[File:Lava Bucket JE1 BE1.png|32px]] Added lava buckets.}}
{{History|foot}}

== Issues ==
{{Issue list}}

==Trivia==
* One lava bucket has the highest number of [[smelting|smelts]] in the game at 100 items per bucket.
** This makes it 12.5 times more efficient than [[coal]] and [[charcoal]].
* A lava bucket is used as Steve's Down-Smash attack in the crossover fighting game Super Smash Bros. Ultimate.

{{Items}}

[[Category:Renewable resources]]
[[Category:Tools]]

[[de:Lavaeimer]]
[[ja:溶岩入りバケツ]]
[[pt:Balde de lava]]
[[th:ถังลาวา]]
[[uk:Відро лави]]
[[zh:熔岩桶]]</li></ul>
19w34aAdded the function copy_state.
1.16
{{Extension DPL}}<ul><li>[[:Category:Plants|Category:Plants]]<br/>All pages covering blocks of such things as tall grass and flowers.

[[Category:Blocks]]
[[Category:Items]]

[[cs:Kategorie:Rostliny]]
[[es:Categoría:Plantas]]
[[fr:Catégorie:Plante]]
[[hu:Kategória:Növények]]
[[it:Categoria:Piante]]
[[ja:カテゴリ:植物]]
[[ko:분류:식물]]
[[nl:Categorie:Planten]]
[[pl:Kategoria:Rośliny]]
[[pt:Categoria:Plantas]]
[[ru:Категория:Растения]]
[[th:หมวดหมู่:พืช]]
[[zh:Category:植物]]</li><li>[[Suspicious Stew|Suspicious Stew]]<br/>{{For|the block|Suspicious Sand}}
{{Item
| title = Suspicious Stew
| heals = {{hunger|6}}
| renewable = Yes 
| stackable = No
|effects=See {{slink||Food}}
}}
'''Suspicious stew''' is a [[food]] item that can give the [[player]] a [[effect|status effect]] that depends on the [[flower]] used to craft it.

== Obtaining ==
{{IN|Bedrock}}, suspicious stew is the only food item in the game that can be obtained from the [[Creative]] inventory only by searching. However, it can be crafted and can also be found in [[shipwreck]] chests. Suspicious stew can be given with [[commands]] like {{cmd|give}}, but {{in|java}}, unless NBT data like that listed in the data values section is included, consuming it has no effect and still restores the same hunger points as a normal suspicious stew. In [[Bedrock Edition]], giving the player a suspicious stew through commands causes the stew to choose an allowable status effect at random.

=== Harvesting ===
Suspicious stew can be obtained by "milking" a brown [[mooshroom]] with a [[bowl]] after using a small flower on it. When a small flower is used on a brown mooshroom, the brown mooshrom produces a suspicious stew related to that small flower the next time it is milked with a bowl. Red mooshrooms do not produce suspicious stew. The brown mooshroom returns to producing [[mushroom stew]] until fed another small flower.

=== Crafting ===
{{Crafting
|Red Mushroom
|Brown Mushroom
|Bowl
|Any Flower
|Output=Suspicious Stew
|shapeless=true
|type=Foodstuff
}}
Suspicious stew is not listed in the recipe book. However, it can be quickly assembled by clicking the [[Mushroom Stew|mushroom stew]] recipe and adding one small flower to it.

=== Chest loot ===
{{LootChestItem|suspicious-stew}}

=== Mob loot ===
After being given a flower, a brown [[mooshroom]] can be "milked" for suspicious stew by {{control|using}} a [[bowl]] on it. The flower type determines the stew's effect using the same rule as a crafted stew. Milking a red mooshroom after feeding it a flower does not yield a suspicious stew specific to that flower.

=== Trading ===
{{IN|java}}, expert-level farmer [[villager]]s can offer either 1 or 2 suspicious stew trades, each stew for one [[emerald]].

{{IN|bedrock}}, expert-level farmer villager offers to sell suspicious stew for one emerald as well.

The [[trading]] interface does not indicate the type of suspicious stew being sold, but each trade entry consistently yields the same type of stew, so the player can remember or make a note of the types offered by a given villager, such as "this villager's first stew gives [[blindness]], and their second entry gives saturation".

== Usage ==
=== Food ===
{{see also|Tutorials/Hunger management}}
To eat suspicious stew, press and hold {{control|use}} while it is selected in the hotbar. Eating one restores {{hunger|6}} hunger and 7.2 hunger [[Hunger#Mechanics|saturation]] and gives a few seconds of a [[effect|status effect]] that varies depending on which flower was used to craft it. The effect is not displayed in the tooltip, texture, etc., meaning that the player cannot know in advance what the effect is without knowing which flower was used.

{{/Effects}}
The [[bowl]] is emptied and returned to the player after the suspicious stew has been eaten, and can be re-used to craft more stews. Unlike most foods, suspicious stew can be eaten even if the player's hunger bar is full.

The Saturation effect effectively makes those two stews a superfood: In those 6 or 7 ticks it can restore up to 6(7) hunger and 12(14) saturation points ''on top of'' their food value, for a total of at least {{hunger|12}} hunger, and effectively maximizing saturation. This is the largest amount of hunger and saturation the player can get from a single food item. Regeneration can restore up to {{Health|3}} health, and Poison or Wither can inflict up to {{Health|4}} damage.

Consuming suspicious stew is the only way to obtain the Saturation and Blindness effects in vanilla ''Minecraft'' without the use of commands.

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

=== Unique ===
{{edition|java}}:
{{Sound table
|sound=Mooshroom eat1.ogg
|sound2=Mooshroom eat2.ogg
|sound3=Mooshroom eat3.ogg
|sound4=Mooshroom eat4.ogg
|subtitle=Mooshroom eats 
|source=neutral
|description=Plays when a brown mooshroom is fed a flower.
|id=entity.mooshroom.eat
|translationkey=subtitles.entity.mooshroom.eat
|volume=2.0
|pitch=''varies'' <ref group=sound>Can be 1.0, 0.95, or 1.05 for each sound</ref>
|distance=16}}
{{Sound table
|sound=Mooshroom milk1.ogg
|sound2=Mooshroom milk2.ogg
|sound3=Mooshroom milk3.ogg
|subtitle=Mooshroom gets milked suspiciously
|source=neutral
|description=Plays when a brown mooshroom is milked with a bowl after being fed a flower.
|id=entity.mooshroom.suspicious_milk
|translationkey=subtitles.entity.mooshroom.suspicious_milk
|volume=1.0
|pitch=''varies'' <ref group=sound>Can be 1.0, 0.9, or 1.1 for each sound</ref>
|distance=16
|foot=1}}

{{edition|bedrock}}:
{{Sound table
|type=bedrock
|sound=Mooshroom eat1.ogg
|sound2=Mooshroom eat2.ogg
|sound3=Mooshroom eat3.ogg
|sound4=Mooshroom eat4.ogg
|subtitle=Mooshroom eats 
|source=Friendly Creatures
|description=When a brown mooshroom is fed a flower
|id=mob.mooshroom.eat
|volume=1.0/0.95/1.05
|pitch=0.8-1.2}}
{{Sound table
|sound=Mooshroom milk1.ogg
|sound2=Mooshroom milk2.ogg
|sound3=Mooshroom milk3.ogg
|subtitle=Mooshroom gets milked 
|source=Friendly Creatures
|description=When a mooshroom is milked with a bowl
|id=mob.mooshroom.suspicious_milk
|volume=1.0/0.9/1.1
|pitch=1.0
|foot=1}}

== Data values ==
=== ID ===
{{edition|java}}:
{{ID table
|edition=java
|showforms=y
|generatetranslationkeys=y
|displayname=Suspicious Stew
|spritetype=item
|nameid=suspicious_stew
|form=item
|foot=1}}

{{edition|bedrock}}:
{{ID table
|edition=bedrock
|shownumericids=y
|showforms=y
|notshowbeitemforms=y
|generatetranslationkeys=y
|displayname=Suspicious Stew
|spritetype=item
|nameid=suspicious_stew
|id=590
|form=item
|foot=1}}

=== Item data ===

{{IN|je}}, suspicious stew uses the following NBT data:
<div class="treeview">
* {{nbt|compound|tag}}: The item's '''tag''' tag.
{{:Player.dat format/Suspicious Stew}}
</div>

=== Metadata ===
{{IN|be}}, suspicious stew uses the following data values:
{{dvt|spritetype=item|sprite=suspicious-stew|{{EffectLink|Night Vision}} from {{BlockLink|Poppy}}}}
{{dvt|sprite=suspicious-stew|{{EffectLink|Jump Boost}}}}
{{dvt|sprite=suspicious-stew|{{EffectLink|Weakness}}}}
{{dvt|sprite=suspicious-stew|{{EffectLink|Blindness}}}}
{{dvt|sprite=suspicious-stew|{{EffectLink|Poison}}}}
{{dvt|sprite=suspicious-stew|{{EffectLink|Saturation}} from {{BlockLink|Dandelion}}}}
{{dvt|sprite=suspicious-stew|{{EffectLink|Saturation}} from {{BlockLink|Blue Orchid}}}}
{{dvt|spritetype=item|sprite=suspicious-stew|{{EffectLink|Fire Resistance}}}}
{{dvt|sprite=suspicious-stew|{{EffectLink|Regeneration}}}}
{{dvt|sprite=suspicious-stew|{{EffectLink|Wither}}}}
{{dvt|sprite=suspicious-stew|{{EffectLink|Night Vision}} from {{BlockLink|Torchflower}}|foot=1}}

== Achievements ==
{{load achievements|Time for Stew}}

== Advancements ==
{{load advancements|A Furious Cocktail;How Did We Get Here;Husbandry;A Balanced Diet}}

== History ==
{{History|java}}
{{History||1.14|snap=18w43a|[[File:Suspicious Stew JE1 BE1.png|32px]] Added suspicious stew.
|Suspicious stew is not obtainable in the [[Creative inventory]].}}
{{History|||snap=19w08a|Suspicious stew can be obtained by milking brown [[mooshroom]]s.}}
{{History|||snap=19w11a|[[Trading]] has been changed, expert-level farmer villagers now sell suspicious stew for an [[emerald]].}}
{{History||1.14.4|snap=Pre-Release 1|Suspicious stew made from [[poppies]] now gives [[Night Vision]] to the [[player]] instead of [[Speed]].}}
{{History||1.16|snap=Pre-release 1|Mooshrooms can now be milked for suspicious stew in Creative mode.<ref>{{bug|MC-90969}}</ref>}}
{{History||1.17|snap=21w13a|Suspicious stew can now be eaten even if the player is at full [[hunger]].}}
{{History||1.19|snap=22w13a|Suspicious stew may now be found in [[ancient city]] [[chest]]s.}}
{{History||1.19.3|snap=22w45a|Suspicious stew is now available in the [[Creative]] [[inventory]].}}
{{History||1.20<br>(Experimental)|link=1.19.4|snap=23w07a|Suspicious stew now drops when brushing [[suspicious sand]] in [[desert well]]s.}}
{{History|||snap=1.19.4-pre1|[[Torchflower]]s can now be used to make suspicious stew.}}
{{History||1.20|snap=23w12a|The probability for the suspicious stew to generate in the [[suspicious sand]] in [[desert well]] has been changed from 1/7 to 1/8.}}

{{History|bedrock}}
{{History||1.13.0|snap=beta 1.13.0.9|[[File:Suspicious Stew JE1 BE1.png|32px]] Added suspicious stew.
|Suspicious stew is not obtainable in the Creative inventory.}}
{{History|||snap=beta 1.13.0.15|Master-level farmer [[villager]]s can now [[trading|sell]] suspicious stew.}}
{{History||1.16.0|snap=beta 1.16.0.57|[[Trading]] has been changed, expert-level farmer villagers now sell suspicious stew for an [[emerald]].}}
{{History||1.20.0<br>(Experimental)|link=Bedrock Edition 1.19.70|snap=beta 1.19.70.23|Suspicious stew now drops when brushing [[suspicious sand]] in [[desert well]]s.}}
{{History||1.20.10|Added one type of suspicious stew to the Items tab in the Creative inventory.}}
{{History||1.20.30|snap=beta 1.20.20.20|Suspicious stew can no longer be found in the Creative inventory.}}
{{History|foot}}

== Issues ==
{{Issue list}}

== Trivia ==
* Suspicious stew was introduced because developers wanted a way of communicating that [[wikipedia:Lily_of_the_valley|lilies of the valley]] are poisonous.<ref>{{ytl|YUM7XiEX1DI|Items: Ten Things You Probably Didn't Know About Minecraft @ 3:32|Minecraft|November 29, 2019|t=212s}}</ref>

== References ==
{{Reflist}}
<references group="loot"/>

{{Items}}

[[Category:Food]]

[[de:Seltsame Suppe]]
[[es:Estofado sospechoso]]
[[fr:Soupe suspecte]]
[[ja:怪しげなシチュー]]
[[ko:수상한 스튜]]
[[nl:Geheimzinnige stoofpot]]
[[pl:Podejrzana potrawka]]
[[pt:Ensopado suspeito]]
[[ru:Подозрительный суп]]
[[th:สตูว์พิศวง]]
[[zh:迷之炖菜]]
[[Category:Renewable resources]]</li></ul>
20w12aAdded fishing_hook sub-predicate to check properties of the fishing hook.
1.20
{{Extension DPL}}<ul><li>[[Nether Star|Nether Star]]<br/>{{Distinguish|Firework Star}}
{{Item
| image = Nether Star.gif
| renewable = Yes
| stackable = Yes (64)
| rarity = Uncommon
}}
The '''Nether Star''' is a rare item [[drops|dropped]] by the [[wither]] that is used solely to [[Crafting|craft]] [[Beacon]]s.

== Obtaining ==

=== Mob loot ===

The nether star can be obtained only by defeating the [[Wither]] [[Mob#Boss mobs|boss]], which is created using [[Soul sand]] and [[Head|Wither Skeleton Skulls]]. One nether star is dropped each time; the dropped amount is not affected by the [[Looting]] enchantment. {{IN|java}}, nether stars dropped by withers take 10 minutes to despawn and are immune to explosions. {{IN|bedrock}}, nether star items never despawn, neither by time nor by explosions.

== Usage ==

The nether star has the same animated glint as [[enchanted]] items, [[potion]]s, and [[end crystal]]s.

A dropped nether star item cannot be destroyed by [[explosion]]s. However, it can still be destroyed by a falling [[anvil]],‌{{only|java}} [[fire]], [[lava]], [[cacti]], or [[the Void]].

It is used to [[Crafting|craft]] a [[beacon]].

=== Crafting ingredient ===

{{crafting usage|match=start}}

== Achievements ==
{{load achievements|The beginning;The beginnig?.}}

== Advancements ==
{{load advancements|Withering Heights}}

== Data values ==
=== ID ===
{{edition|java}}:
{{ID table
|edition=java
|showforms=y
|generatetranslationkeys=y
|displayname=Nether Star
|spritetype=item
|nameid=nether_star
|form=item
|foot=1}}

{{edition|bedrock}}:
{{ID table
|edition=bedrock
|showaliasids=y
|shownumericids=y
|showforms=y
|notshowbeitemforms=y
|generatetranslationkeys=y
|displayname=Nether Star
|spritetype=item
|nameid=nether_star
|aliasid=netherstar
|id=518
|form=item
|translationkey=item.netherStar.name
|foot=1}}

== Video ==

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

== History ==

{{History|java}}
{{History||1.4.2|snap=12w34a|[[File:Nether Star JE1.png|32px]] The texture of the nether star has been added.}}
{{History|||snap=12w36a|[[File:Nether Star JE1.gif|32px]] Added nether stars.
|Nether stars are [[drops|dropped]] by the [[wither]].}}
{{History|||snap=12w37a|[[File:Nether Star JE2 BE1.gif|32px]] The texture of nether stars has been changed so that they no longer have a dark outline.}}
{{History||1.4.6|snap=12w49a|[[Drops|Dropped]] nether stars can no longer be destroyed by [[explosion]]s.}}
{{History||1.13|snap=17w47a|Prior to [[1.13/Flattening|''The Flattening'']], this [[item]]'s numeral ID was 399.}}
{{History||1.14|snap=18w43a|[[File:Nether Star.gif|32px]] The texture of nether stars has been changed.}}
{{History||1.16|snap=20w07a|Nether star has become a [[renewable resource]], as [[soul sand]], one of the blocks used to construct withers, is now renewable through [[bartering]].}}

{{History|pocket alpha}}
{{History||v0.16.0|snap=build 4|[[File:Nether Star JE2 BE1.gif|32px]] Added nether stars.}}
{{History|bedrock}}
{{History||1.10.0|snap=beta 1.10.0.3|[[File:Nether Star.gif|32px]] The texture of nether stars has been changed.}}

{{History|console}}
{{History||xbox=TU19|xbone=CU7|ps=1.12|wiiu=Patch 1|switch=1.0.1|[[File:Nether Star JE2 BE1.gif|32px]] Added nether stars.}}
{{History||xbox=none|xbone=none|ps=1.90|wiiu=none|switch=none|[[File:Nether Star.gif|32px]] The texture of nether stars has been changed.}}

{{History|New 3DS}}
{{History||1.3.12|[[File:Nether Star JE2 BE1.gif|32px]] Added nether stars.}}
{{History|foot}}

== Issues ==
{{issue list}}

== Gallery ==

<gallery>
File:Nether Star JE3 BE2.png|The nether star without enchanted animated glint.
File:Star Drop.png|The nether star dropped by the wither.
File:Wither, left- Nether Star, right.png|A wither to the left, and a nether star to the right.
</gallery>

== References ==
{{reflist}}

==External Links==
*[https://www.minecraft.net/en-us/article/taking-inventory--nether-star Taking Inventory: Nether Star] – Minecraft.net on May 11, 2023

{{Items}}

[[cs:Netheritová hvězda]]
[[de:Netherstern]]
[[es:Estrella del Inframundo]]
[[fr:Étoile du Nether]]
[[hu:Alvilági csillag]]
[[it:Stella del Nether]]
[[ja:ネザースター]]
[[ko:네더의 별]]
[[nl:Netherster]]
[[pl:Netherowa gwiazda]]
[[pt:Estrela do Nether]]
[[ru:Звезда Нижнего мира]]
[[tr:Nether Yıldızı]]
[[uk:Зірка Незеру]]
[[zh:下界之星]]
[[Category:Renewable resources]]</li><li>[[Stick|Stick]]<br/>{{for|other uses|Stick (disambiguation)}}
{{Item
| image = Stick.png
| renewable = Yes
| stackable = Yes (64)
}}

A '''stick''' is an item used for [[crafting]] many [[tools]] and [[item]]s.

== Obtaining ==

=== Crafting ===

{{Crafting
|B2= Any Planks
|B3= Any Planks
|Output= Stick,4
|type= Material
|head=1
}}
{{Crafting
|B2= Bamboo
|B3= Bamboo
|Output= Stick
|type= Material
|foot=1
}}

=== Fishing ===

Sticks can be obtained as a "junk" item while [[fishing]].

=== Block loot ===

[[Dead bush]]es drop between 0–2 sticks when destroyed.

All [[Leaves|leaf]] types have a 2% chance to drop between 1-2 sticks when broken. Using a tool with [[Fortune]] increase these chances to 2.2%, 2.5%, and 3.3% for Fortune I, II, and III respectively.

=== Entity loot ===

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

[[Boat]]s and [[Boat with Chest|boats with chest]]s drop 2 sticks when falling from exactly 12, 13, 49, 51, 111, 114, 198, 202, 310, or 315 blocks.<ref>{{bug|MC-119369}}</ref>.

=== Chest loot ===

{{LootChestItem|stick}}

== Usage ==

=== Crafting ingredient ===

{{crafting usage}}

=== Fuel ===

When used as a [[furnace]] fuel, a stick smelts 0.5 [[item]]s.

=== Trading ===

Novice-level [[Trading#Fletcher|fletcher]] [[villager]]s have a {{frac|2|3}} chance to buy 32 sticks for an [[emerald]] in ''Java Edition'', and they always offer the trade in Bedrock Edition.

== Video ==

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

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

{{edition|bedrock}}:
{{ID table
|edition=bedrock
|shownumericids=y
|showforms=y
|notshowbeitemforms=y
|generatetranslationkeys=y
|displayname=Stick
|spritetype=item
|nameid=stick
|id=320
|form=item
|foot=1}}

== History ==

{{History|java indev}}
{{History||0.31|snap=20100129|[[File:Stick JE1 BE1.png|32px]] Added sticks.
|Sticks are used to craft [[sign]]s, [[torch]]es, [[sword]]s, [[pickaxe]]s, [[axe]]s and [[shovel]]s.}}
{{History|||snap=20100130|Sticks are now used to craft [[bow]]s and [[arrow]]s.}}
{{History||20100206|Sticks are now used to craft [[hoe]]s.}}
{{History||20100219|Sticks can be used as fuel for the newly added [[furnace]].}}
{{History||20100223|Sticks are now used to craft [[painting]]s.}}
{{History|java infdev}}
{{History||20100607|Sticks are now used to craft [[ladder]]s.}}
{{History||20100618|Sticks are now used to craft [[rail]]s.}}
{{History|java alpha}}
{{History||v1.0.1|Sticks are now used to craft [[redstone torch]]es and [[lever]]s.}}
{{History||v1.0.6|2 sticks now drops from breaking [[boat]]s.}}
{{History||v1.0.17|Sticks are now used to craft [[fence]]s.}}
{{History||v1.1.1|Sticks are now used to craft [[fishing rod]]s.}}
{{History|java beta}}
{{History||1.5|Sticks are now used to craft [[powered rail]]s.}}
{{History||1.8|snap=Pre-release|Sticks are now used to craft [[fence gate]]s.}}
{{History|java}}
{{History||1.2.4|snap=release|[[Spruce planks]], [[birch planks]], and [[jungle planks]] can now be used to craft sticks.}}
{{History||1.3.1|snap=12w16a|Sticks are found in the new [[bonus chest]]s.}}
{{History|||snap=12w22a|Sticks are now used to craft [[tripwire hook]]s.}}
{{History|||snap=12w27a|Sticks no longer drops from breaking [[boat]]s.|Instead, it needs to fall certain heights to drop 2 sticks.}}
{{History||1.4.2|snap=12w34a|Sticks are now used to craft [[item frame]]s.}}
{{History|||snap=12w38b|[[Witch]]es now have a chance to drop sticks.}}
{{History||1.5|snap=13w02a|Sticks are now used to craft [[activator rail]]s.}}
{{History||1.7.2|snap=13w36a|Sticks can be obtained as one of the "junk" [[item]]s by [[fishing]].}}
{{History|||snap=1.7.1|[[Acacia planks]] and [[dark oak planks]] can now be used to craft sticks.}}
{{History||1.8|snap=14w30a|Sticks are now used to craft [[banner]]s.}}
{{History|||snap=14w32a|Sticks are now used to craft [[armor stand]]s.}}
{{History||1.9|snap=15w31a|Sticks are now dropped by [[dead bush]]es.}}
{{History|||snap=15w44a|Sticks are now found in [[bonus chest]]s for more than double the average yield.}}
{{History||1.13|snap=17w47a|Sticks can now be found in 70.5% of bonus chests in stacks of 1–12.
|Prior to [[1.13/Flattening|''The Flattening'']], this [[item]]'s numeral ID was 280.}}
{{History||1.14|snap=18w43a|Sticks can now be crafted from [[bamboo]].
|Sticks can now be used to craft [[crossbow]]s.
|Sticks are now [[drops|dropped]] by [[leaves]].}}
{{History|||snap=18w48a|Sticks can now be used to craft [[grindstone]]s.
|Sticks can now be found in [[chest]]s in [[village]] cartographer houses.}}
{{History|||snap=18w50a|Sticks can now be found in village fletcher houses and toolsmith houses.}}
{{History|||snap=19w02a|Sticks can now be used to craft [[campfire]]s.}}
{{History|||snap=19w11a|Fletcher [[villager]]s now [[trading|buy]] sticks.}}
{{History||1.16|snap=20w06a|[[Crimson planks]] and [[warped planks]] can now be used to craft sticks.
|Sticks can now be used to craft [[soul torch]]es.}}
{{History||1.17|snap=21w05a|Sticks are now dropped by [[azalea leaves]] and [[flowering azalea leaves]].}}
{{History||1.19|snap=22w11a|[[Mangrove planks]] can now be used to craft sticks.}}
{{History|||snap=22w13a|Sticks are now dropped by [[mangrove leaves]].}}
{{History||1.19.4|snap=23w07a|The [[crossbow]] and [[soul campfire]] recipes are no longer unlocked by sticks.}}
{{History||1.20<br>(Experimental)|link=1.19.4|snap=23w07a|Sticks are now dropped by [[cherry leaves]].
|Sticks can now be used to craft [[brush]]es.
|Sticks now drop when brushing [[suspicious sand]] in [[desert well]]s.}}
{{History||1.20|snap=23w12a|The probability for the stick to generate in the [[suspicious sand]] in [[desert well]] has been changed from 1/7 to 1/8.}}

{{History|pocket alpha}}
{{History||v0.2.0|[[File:Stick JE1 BE1.png|32px]] Added sticks. They are currently unobtainable and serve no purpose.}}
{{History||v0.3.0|Sticks are now [[craft]]able.
|Sticks can be used to [[craft]] wooden and stone [[pickaxe]]s, [[axe]]s, [[sword]]s and [[shovel]]s, [[ladder]]s, [[torch]]es, [[fence]]s and [[fence gate]]s.}}
{{History||v0.3.2|Sticks are now used to craft iron, gold and diamond [[pickaxe]]s, [[axe]]s, [[sword]]s and [[shovel]]s.}}
{{History||v0.3.3|Sticks are now used to craft [[bow]]s.}}
{{History||v0.4.0|Sticks are now used to craft [[hoe]]s.}}
{{History||v0.5.0|Sticks are now used to craft [[painting]]s.}}
{{History||v0.6.0|Sticks are now used to craft [[sign]]s.}}
{{History||v0.8.0|snap=build 2|Sticks are now used to craft [[rail]]s and [[powered rail]]s.}}
{{History||v0.11.0|snap=build 1|Sticks are now used to craft [[fishing rod]]s.
|Sticks can now be found as a junk [[item]] from [[fishing]].}}
{{History||v0.12.1|snap=build 1|Sticks are now [[drops|dropped]] when [[dead bush]]es are [[breaking|destroyed]].}}
{{History||v0.13.0|snap=build 1|Sticks are now used to craft [[redstone torch]]es, [[lever]]s and [[tripwire hook]]s.}}
{{History||v0.14.0|snap=build 1|Added [[witch]]es, which have a chance of [[drops|dropping]] sticks.
|Sticks can now be used to craft [[item frame]]s.}}
{{History|bedrock}}
{{History||1.2.0|snap=beta 1.2.0.2|Sticks can now be used to craft [[armor stand]]s and [[banner]]s.
|Sticks can now generate inside [[bonus chest]]s.}}
{{History||1.4.0|snap=beta 1.2.20.1|Sticks can now be used to craft [[sparkler]]s.}}
{{History||1.8.0|snap=beta 1.8.0.8|Sticks can now be crafted from [[bamboo]].}}
{{History|||snap=beta 1.8.0.10|Sticks can now be used to craft [[crossbow]]s.}}
{{History||1.10.0|snap=beta 1.10.0.3|Sticks can now be used to craft [[barrel]]s, [[grindstone]]s, and [[campfire]]s.
|[[Leaves]] now have a chance of [[drops|dropping]] 0-2 sticks when [[breaking|destroyed]].}}
{{History||1.11.0|snap=beta 1.11.0.1|Sticks can now be found in [[village]] toolsmith and fletcher [[chest]]s.}}
{{History|||snap=beta 1.11.0.4|Sticks can now be [[trading|sold]] to fletcher [[villager]]s.}}
{{History||1.16.0|snap=beta 1.16.0.51|Sticks can now be used to craft [[soul torch]]es.}}
{{History||1.20.0<br>(Experimental)|link=Bedrock Edition 1.19.70|snap=beta 1.19.70.23|Sticks can now be used to craft [[brush]]es.
|Sticks now drop when brushing [[suspicious sand]] in [[desert well]]s.}}
{{History||1.20.10|snap=beta 1.20.10.20|Sticks are no longer used to craft barrels.}}

{{History|console}}
{{History||xbox=TU1|xbone=CU1|ps=1.0|wiiu=Patch 1|[[File:Stick JE1 BE1.png|32px]] Added sticks.}}
{{History|PS4}}
{{History||1.90|Sticks can now be [[drops|dropped]] by [[leaves]].}}

{{History|new3DS}}
{{History||0.1.0|[[File:Stick JE1 BE1.png|32px]] Added sticks.}}
{{History|foot}}

== Issues ==
{{issue list}}

== Trivia ==

* The stick is used in 49 recipes in ''Java Edition'', and 50 recipes in ''Bedrock Edition'', more than any other item in the game. [[Iron ingot]] takes second place with 35 recipes, and [[planks]] take third place with 34 recipes.
* To craft each recipe once, a player would need 111 sticks, including 1 for the [[redstone torch]] in an [[activator rail]], while using the extra tripwire hook for the [[crossbow]]. This would require 56 [[planks]], or 14 [[logs]], for the sticks, and an extra 29 planks for the [[tool|wooden tools]], [[tripwire hook]], [[signs]], [[fences]], [[fence gate]], [[grindstone]], and slabs for the [[barrel]]. This means that the player needs a total of 85 planks, or 22 logs, plus 6 more for the [[campfire]] and [[soul campfire]].

== External Links ==
*[https://www.minecraft.net/en-us/article/taking-inventory--stick Taking Inventory: Stick] – Minecraft.net on April 2, 2020

{{Items}}

[[cs:Tyčka]]
[[de:Stock]]
[[es:Palo]]
[[fr:Bâton]]
[[hu:Bot]]
[[it:Bastone]]
[[ja:棒]]
[[ko:막대기]]
[[nl:Stok]]
[[pl:Patyk]]
[[pt:Graveto]]
[[ru:Палка]]
[[th:แท่งไม้]]
[[tr:Çubuk]]
[[uk:Палиця]]
[[zh:木棍]]
[[Category:Renewable resources]]</li></ul>
23w14aAdded the function reference.
23w17aAdded the loot table sniffer_digging.
pre1Made random sequences for loot tables deterministic.
Added random_sequence field.
pre6The ID of the random sequence is now an optional field.
Upcoming Java Edition
1.20.2
{{Extension DPL}}<ul><li>[[Melon Slice|Melon Slice]]<br/>{{Dungeons hatnote|type=consumable|Melon}}
{{Item
| title = Melon Slice
|typeimage=Melon Slice.png
| renewable = Yes
| heals = {{hunger|2}}
| stackable = Yes (64)
}}
A '''melon slice'''{{efn|Known as '''Melon Slice''' {{in|java}} and '''Melon''' {{in|bedrock}}.}} is a [[food]] item that can be eaten by the [[player]].

== Obtaining ==

=== Block loot ===

{{see also|Tutorials/Pumpkin and melon farming|title1 = Pumpkin and melon farming}}

Melon slices can be obtained by breaking (harvesting) [[melon]]s using any [[tool]] or by hand. [[Axe]]s, followed by [[sword]]s, are the fastest tools for harvesting melons.  A melon drops 3–7 melon slices, when broken; by hand, using a [[tool]], or after being broken by the movement of a [[piston]], with an average of 4.64 slices per melon.

Breaking a melon with a tool enchanted with [[Fortune]] increases the potential number of drops by 1 slice per level, up to a maximum of 9 slices.

== Usage ==

=== Food ===
{{see also|Tutorials/Hunger management|title1=Hunger management}}

To eat a melon slice, press and hold {{control|use}} while it is selected in the hotbar. Eating one restores {{hunger|2}} [[hunger]] and 1.2 hunger 
[[Hunger#Mechanics|saturation]].

=== Crafting ingredient ===

{{crafting usage}}

=== Composting ===
Placing a melon slice into a [[composter]] has a 50% chance of raising the compost level by 1.

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

== Data values ==

=== ID ===

{{edition|java}}:
{{ID table
|edition=java
|showforms=y
|generatetranslationkeys=y
|displayname=Melon Slice
|spritetype=item
|nameid=melon_slice
|form=item
|foot=1}}

{{edition|bedrock}}:
{{ID table
|edition=bedrock
|showaliasids=y
|shownumericids=y
|showforms=y
|notshowbeitemforms=y
|generatetranslationkeys=y
|spritename=melon-slice
|displayname=Melon
|spritetype=item
|nameid=melon_slice
|aliasid=melon
|id=272
|form=item
|translationkey=item.melon.name
|foot=1}}

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

== History ==
{{History|java beta}}
{{History||1.8|snap=Pre-release|[[File:Melon Slice JE1 BE1.png|32px]] Added melons.}}
{{History|java}}
{{History||1.0.0|snap=Beta 1.9 Prerelease 4|Melons are now used in the [[crafting]] recipe of [[glistering melon]]s.}}
{{History|||snap=Beta 1.9 Prerelease 5|Melons once again drop the correct number of slices.}}
{{History||1.3.1|snap=12w21a|Melons can now be [[trading|bought]] from farmer [[villager]]s, at 5–8 melon slices for 1 [[emerald]].}}
{{History||1.7.2|snap=13w37a|Block ID 105, [[melon stem]], has been removed from the {{cmd|give}} [[commands|command]].}}
{{History||1.8|snap=14w02a|[[Villager]]s no longer [[trading|sell]] melons. They now buy [[melon]]s instead.}}
{{History||1.13|snap=17w47a|Prior to [[1.13/Flattening|''The Flattening'']], this [[item]]'s numeral ID was 360.}}
{{History|||snap=18w20b|"Melon" has been renamed to "Melon Slice."
|The ID of melon slices has been changed from <code>melon</code> to <code>melon_slice</code>.}}
{{History||1.14|snap=18w43a|[[File:Melon Slice JE2 BE2.png|32px]] The texture of melon slices has been changed.}}
{{History|||snap=19w03a|Placing a melon slice into the new [[composter]] has a 20% chance of raising the compost level by 1.}}
{{History|||snap=19w05a|Melon slices now have a 50% chance of increasing the compost level in a composter by 1.}}

{{History|pocket alpha}}
{{History||v0.5.0|[[File:Melon Slice JE1 BE1.png|32px]] Added melons. 
|Melons restore {{health|2}} each, rather than {{hunger|2}}.}}
{{History||v0.12.1|snap=?|Added Melon slice to the Creative inventory.}}
{{History|||snap=build 1|Melons now restores [[hunger]] instead of [[health]].
|Melons can no longer be obtained from [[nether reactor]]s.}}
{{History|pocket}}
{{History||1.1.0|snap=alpha 1.1.0.3|[[Breaking]] a [[melon]] with [[shears]] now always yields 9 melons.}}
{{History|bedrock}}
{{History||1.10.0|snap=beta 1.10.0.3|[[File:Melon Slice JE2 BE2.png|32px]] The texture of melons has been changed.}}
{{History||1.11.0|snap=beta 1.11.0.1|Melons can now be used to fill up [[composter]]s.}}
{{History|||snap=beta 1.11.0.4|Melons can now be [[trading|sold]] to farmer [[villager]]s.}}
{{History||1.16.0|snap=beta 1.16.0.57|[[Trading]] has been changed, melon slices can no longer be sold to farmer villagers.}}
{{History||1.16.100|snap=beta 1.16.100.56|The ID of melon slices has been changed from <code>melon</code> to <code>melon_slice</code>.}}

{{History|console}}
{{History||xbox=TU5|xbone=CU1|ps=1.0|wiiu=Patch 1|[[File:Melon Slice JE1 BE1.png|32px]] Added melons.}}
{{History||xbox=none|xbone=none|ps=1.90|wiiu=none|switch=none|[[File:Melon Slice JE2 BE2.png|32px]] The texture of melons has been changed.}}

{{History|new 3ds}}
{{History||0.1.0|[[File:Melon Slice JE1 BE1.png|32px]] Added melons.}}
{{History|foot}}

== Issues ==
{{issue list}}

== See also ==
* [[Pumpkin]]
* [[Glistering Melon Slice]]

== Notes ==
{{fnlist}}

{{Items}}

[[Category:Plants]]

[[cs:Meloun]]
[[de:Melone]]
[[es:Rodaja de sandía]]
[[fr:Tranche de pastèque]]
[[hu:Dinnye Szelet]]
[[ko:수박]]
[[nl:Meloenschijf]]
[[pl:Arbuz]]
[[pt:Fatia de melancia]]
[[ru:Ломтик арбуза]]
[[zh:西瓜片]]
[[Category:Food]]
[[Category:Renewable resources]]</li><li>[[Tropical Fish (item)|Tropical Fish (item)]]<br/>{{Item
| title = Tropical Fish
| image = Tropical Fish.png
| renewable = Yes
| heals = {{hunger|1}}
| stackable = Yes (64)
}}
'''Tropical fish''' is a [[food]] item that cannot be cooked.

== Obtaining ==

=== Fishing ===

Tropical fish can be obtained from [[fishing]]. The wait time of one being caught is decreased with the [[Lure]] enchantment and the chance of one being caught is slightly decreased with the [[Luck of the Sea]] enchantment (named as such because it increases treasure, not fish).

Tropical fish cannot be caught when fishing in [[jungle]] biome and variants.{{only|bedrock}}
<!--1-6 exp-->

=== Mob drops ===

[[Guardian]]s and [[elder guardian]]s have a 2.5% chance of dropping a random fish upon death. This has a 2% chance of being tropical fish. The chance of getting the fish drop can be increased by 1% per level of [[Looting]], but the type of fish is not affected.

[[Tropical fish]] always drop 1 tropical fish in its item form when killed. This drop is not affected by Looting.<ref>{{bug|MC-212795||Salmon & Fish mobs are not affected by Looting}}</ref>

== Usage ==

=== Food ===

Tropical fish restores {{hunger|1}} [[hunger]] and 0.2 [[Hunger#Mechanics|saturation]].

=== Trading ===

Expert-level fisherman [[villager]]s have a {{frac|1|7}} chance to buy a single tropical fish for one [[emerald]].{{only|bedrock}}

Expert-level fisherman villagers always offer to buy 6 tropical fish for an emerald.{{only|java}}

=== Wolves ===
{{IN|Bedrock}}, tropical fish can be used to feed [[wolves]], healing them by {{hp|1|mob=1}}. However, unlike other wolf food, tropical fish cannot be used to breed or speed up the growth of baby wolves. Tropical fish can be fed only to a wolf that is not at full health.

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

== Data values ==
=== ID ===
{{edition|java}}:
{{ID table
|edition=java
|showitemtags=y
|showforms=y
|generatetranslationkeys=y
|displayname=Tropical Fish
|spritetype=item
|nameid=tropical_fish
|itemtags=fishes, axolotl_tempt_items
|form=item
|foot=1}}

{{edition|bedrock}}:
{{ID table
|edition=bedrock
|shownumericids=y
|showaliasids=y
|showforms=y
|notshowbeitemforms=y
|generatetranslationkeys=y
|displayname=Tropical Fish
|spritetype=item
|nameid=tropical_fish
|aliasid=clownfish
|id=266
|form=item
|translationkey=tile.clownfish.name
|foot=1}}

== Achievements ==

{{load achievements|Lion Hunter}}

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

== History ==
{{History|java}}
{{History||1.7.2|snap=13w36a|[[File:Tropical Fish JE1 BE1.png|32px]] Added clownfish.}}
{{History||1.8|snap=14w25a|Clownfish are now obtainable as a rare [[drops|drop]] from [[guardian]]s and [[elder guardians]].}}
{{History||1.13|snap=17w47a|The different data values for the <code>fish</code> ID have been split up into their own IDs.
|Prior to [[1.13/Flattening|''The Flattening'']], this [[item]]'s numeral ID was 349.}}
{{History|||snap=18w08b|[[Tropical fish]] have been added as [[mob]]s, which [[drops|drop]] clownfish as their [[item]] form when killed.
|[[File:Tropical Fish JE2 BE2.png|32px]] The texture of clownfish has been changed.}}
{{History|||snap=18w19a|"Clownfish" has been renamed to "Tropical Fish".}}
{{History|||snap=pre5|The [[item]] ID has now been changed to <code>tropical_fish</code>.}}
{{History||1.14|snap=19w11a|Fisherman [[villager]]s now [[trading|buy]] tropical fish.}}
{{History||1.17|snap=20w51a|Tropical fish can be used to [[breeding|breed]] the new [[axolotl]]s.
|Tropical fish can be used to make axolotls attack drowned and guardians.}}
{{History|||snap=21w20a|Axolotls can no longer be bred using tropical fish, but instead can only be bred with [[Bucket of aquatic mob|buckets of tropical fish]].}}

{{History|pocket alpha}}
{{History||v0.11.0|snap=build 1|[[File:Tropical Fish JE1 BE1.png|32px]] Added clownfish.}}
{{History||v0.12.1|snap=build 1|Clownfish now restore [[hunger]] instead of [[health]].}}
{{History||v0.16.0|snap=build 1|Clownfish can now be [[drops|dropped]] by [[guardian]]s and [[elder guardian]]s.}}
{{History|bedrock}}
{{History||1.4.0|snap=beta 1.2.14.2|"Clownfish" has been renamed to "Tropical Fish".
|[[Tropical fish]] have been added as [[mob]]s, which [[drops|drop]] tropical fish as their [[item]] form when killed.
|[[File:Tropical Fish JE2 BE2.png|32px]] The texture of tropical fish has been changed.}}
{{History||1.8.0|snap=beta 1.8.0.8|Tropical fish can now be used to fed [[ocelot]] to gain their trust.}}
{{History||1.11.0|snap=beta 1.11.0.4|Tropical fish can now be [[trading|sold]] to fisherman [[villager]]s.}}

{{History|console}}
{{History||xbox=TU31|xbone=CU19|ps=1.22|wiiu=Patch 3|switch=1.0.1|[[File:Tropical Fish JE1 BE1.png|32px]] Added clownfish.}}
{{History||xbox=TU69|xbone=none|ps=1.76|wiiu=Patch 38|switch=none|"Clownfish" has been renamed to "Tropical Fish".
|[[File:Tropical Fish JE2 BE2.png|32px]] The texture of tropical fish has been changed.}}

{{History|new 3ds}}
{{History||0.1.0|[[File:Tropical Fish JE1 BE1.png|32px]] Added clownfish.}}
{{History|foot}}

== Issues ==

{{issue list}}

== See also ==

* [[Fishing]]

== References ==
{{reflist}}

{{items}}

[[de:Tropenfisch (Nahrung)]]
[[es:Pez tropical (objeto)]]
[[ja:熱帯魚 (アイテム)]]
[[ko:열대어 (아이템)]]
[[it:Pesce tropicale (oggetto)]]
[[ru:Тропическая_рыба_(предмет)]]
[[zh:热带鱼(物品)]]
[[Category:Renewable resources]]
[[Category:Food]]</li></ul>
23w32aAdded sequence loot function.
all_of predicates in loot tables can now be declared implicitly as an inline array without a type.

Issues[]

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

References[]

Advertisement