Nether Wart (2024)

{{Extension DPL}}<ul><li>[[Tag (item)|Tag (item)]]<br/>{{About|the April Fools item|the standard item used to rename mobs|Name Tag}}{{wip}}{{joke feature}}{{exclusive|java}}{{Item| title = Tag| image = Tag.png| renewable = Yes| stackable = Yes (64)}}Tags and Bits are items exclusive to the [[Java Edition 23w13a or b|23w13a_or_b]] [[Easter eggs#April Fools|April Fools' joke]] snapshot from 2023. They are used to craft in-game representations of [[NBT format|NBT tags]].==Obtaining==A [[stonecutter]] can be used to cut a [[Name Tag|name tag]] into either 16 "Name" or 16 "Tag" items. These can be cut into 16 Bit items each.{{Stonecutting|head=1|showdescription=1|Name Tag|Name, 16; Tag, 16|description=The resulting "Name" items must be named in an [[anvil]].}}{{Stonecutting|showdescription=|Name; Tag|Bit, 16|foot=1}}To be able to proceed from here the <code>nbt_crafting</code> vote must be approved. Bits can be used in a crafting table to craft Left Curly, Right Curly, Left Square, and Right Square. In appears like these are the only tag items that can be crafted from Bits.A [[Crafting Table|crafting table]] can be used to convert a "Tag" item into a "Byte Tag." The amount of [[stick]]s added to the crafting recipe specifies the value of the Byte, as a [[wikipedia:Signed number representations#Two's complement|signed 8-bit value]]. For example, a "Tag" and a full stack of sticks make a Byte with the value <code>64b</code>, while 255 sticks result in <code>-1b</code>. Only one of the sticks is consumed. Two Bytes can be crafted into a "Short Tag" (equivalent to 16 bit), two Shorts into an "Int Tag" (equivalent to 32 bit), and two Ints into a "Long Tag" (equivalent to 64 bit). Many other combinations that form either 16, 32, or 64 bit are possible. For example, two Shorts and an Int make a Long. When combining values, their digits are stuck together in the given order, e.g. <code>1b</code> and <code>0b</code> make <code>256s</code> (equivalent to 0100<sub>16</sub> in [[wikipedia:Hexadecimal|hexadecimal]]). Undoing any of these crafting actions in e.g. a stonecutter is not possible."Float" and "Double Tags" can be crafted by adding one or two [[boat]]s to any numeric tag. A "String Tag" is crafted with a "Tag" and a piece of [[string]].{{Crafting|head=1|showdescription=1|A1= Bit; ; Bit; Bit |B1= ; Bit; Bit; Bit|A2= ; Bit; Bit; |B2= Bit; ; ; Bit|A3= Bit; ; Bit; Bit |B3= ; Bit; Bit; Bit|Output= Right Curly; Left Curly; Left Square; Right Square|ignoreusage=1}}{{Crafting|Tag|String|Output= String Tag|description=String tags must be named in an [[anvil]] to set their value.|ignoreusage=1}}{{Crafting|Tag; Tag; Tag|; Stick; Stick, 64|; ; Stick, 63|Output= Byte Tag; Byte Tag; Byte Tag|description=Only 1 stick is consumed. 128 and more sticks make [[wikipedia:Signed number representations#Two's complement|two's complements]]:128 sticks = <code>-128b</code><br>129 sticks = <code>-127b</code><br>⋮<br>254 sticks = <code>-2b</code><br>255 sticks = <code>-1b</code>|ignoreusage=1}}{{Crafting|Byte Tag; Byte Tag; Byte Tag|Byte Tag; Byte Tag; Byte Tag| ; Byte Tag; Byte Tag| ; Byte Tag; Byte Tag| ; ; Byte Tag| ; ; Byte Tag| ; ; Byte Tag| ; ; Byte Tag|Output= Short Tag; Int Tag; Long Tag|description=Shorts and Ints can be combined the same way, even mixed.Digits are appended, e.g. two <code>1b</code> tags make <code>257b</code> (0101<sub>16</sub> in [[wikipedia:Hexadecimal|hexadecimal]]).|ignoreusage=1}}{{Crafting|Byte Tag; Short Tag; Int Tag; Long Tag|Any Boat; Any Boat; Any Boat; Any Boat|Output= Float Tag; Float Tag; Float Tag; Float Tag|ignoreusage=1}}{{Crafting|Byte Tag; Short Tag; Int Tag; Long Tag|Any Boat; Any Boat; Any Boat; Any Boat|Any Boat; Any Boat; Any Boat; Any Boat|Output= Double Tag; Double Tag; Double Tag; Double Tag|ignoreusage=1}}{{Crafting|Left Curly; Left Curly|Name; Name|Byte Tag; Byte Tag|Right Curly; Name |; Byte Tag | |; Name |; Byte Tag |; Right Curly|Output= Compound Tag; Compound Tag|description=Instead of Bytes any other tag can be used, including other compound tags.|ignoreusage=1}}{{Crafting|Left Square; Left Square|Byte Tag; Byte Tag|Right Square; Byte Tag |; Byte Tag |; Byte Tag |; Byte Tag |; Byte Tag |; Byte Tag |; Right Square|Output= List Tag; List Tag|description=Instead of Bytes any other tag can be used, including other list tags.|ignoreusage=1}}{{Crafting|Compound Tag; List Tag|Compound Tag; List Tag|Output= Compound Tag; List Tag|description=Up to 9 can be combined.When compound tags contain identical names, only the latest of the corresponding values is used.|ignoreusage=1|foot=1}}"Name" and "String Tags" must be named in an [[anvil]] before they can be used. Unnamed Names and Strings always produce a "Sssyntax Error". None of the other tag items can be named.All these items can be combined in a crafting table to form a short sequence of JSON code, as long as the resulting syntax is valid. For example: *A pair of Curlies that enclose a named "Name" item and some value, e.g. a Byte, create a "Compound Tag" with the content <code>{Example:0b}</code>.**Because of the limited size of the crafting table only 3 name-value pairs can be put between Curlies at a time. Compound Tags of any length can be created by concatenating two or more Compound Tags.**An empty pair of Curlies produces an empty Compound Tag with the content <code>{}</code>.*A pair of Square brackets that enclose any number of values, e.g. 7 Bytes, create a "List Tag" with the content <code>[0b,0b,0b,0b,0b,0b,0b]</code>.**Because of the limited size of the crafting table only 7 values can be put between Square brackets at a time. List Tags of any length can be created by concatenating two or more List Tags.**An empty pair of Square brackets produces an empty List with the content <code>[]</code>.**"Name" items cannot be used in a List.The resulting Compound and List Tags can be used as values in other Compound and List Tags, as deeply nested as you want.==Usage==Tags appear to have no further functionality. They cannot be eaten or placed in the world, except in an item frame, as each other item can. However, Compound Tags with values like <code>{Enchantments:[{id:"minecraft:sharpness",lvl:127b}]}</code> will show the [[Enchanting|enchantment]] glint and actually act accordingly when used.<ref>https://www.reddit.com/r/Minecraft/comments/129xdyl/i_figure_out_how_the_nbtcrafting_in_the_vote/</ref> This appears to work with many weapon and tool [[Enchanting#Summary of enchantments by item|enchantments]].In theory, an extremely lucky <code>replace_recipe_output</code> vote can change the crafting recipe for compound tags to output something else. When cheats are enabled you can test this with a command like <code>/vote rule minecraft:replace_recipe_output approve {key:"minecraft:compound_tag",value:"minecraft:netherite_sword"}</code>. However, as long as this vote is approved no other compound tag can be crafted. Use <code>/vote rule minecraft:replace_recipe_output repeal *</code> to undo all recipe replacements.In combination with the <code>midas_touch</code> vote tag items can be converted into [[Gold Ingot|gold ingots]]. These retain their NBT data. When the world is loaded in another version of the game tag items disappear, but gold ingots persist.==Trivia==*This implies that a [[Name Tag|name tag]] is 128 bit.*Compound and list tags are special in so far that the value they show in their [[tooltip]] is not merely a property of the item, but their ''actual'' [[NBT format|NBT data]]. This is also the reason why naming them is disabled as that would mess up the NBT data.*The snapshot also contains an [[History of textures/Unused textures|unused texture]] for an {{ItemLink|End Tag}}.==History=={{History|java}}{{History||23w13a_or_b|[[File:Tag.png|32px]] Added tags.}}{{History|foot}}==Gallery==<gallery>Tag.png|TagBit.png|BitByte Tag.png|Byte TagDouble Tag.png|Double TagEnd Tag.png|End TagFloat Tag.png|Float TagInt Tag.png|Int TagLeft Curly.png|Left CurlyLeft Square.png|Left SqaureList Tag.png|List TagLong Tag.png|Long TagName (23w13a or b).png|NameRight Curly.png|Right CurlyRight Square.png|Right SquareShort Tag.png|Short TagSssyntax Error.png|Sssyntax ErrorString Tag.png|String Tag</gallery>== References =={{reflist}}{{items}}{{jokes}}[[pt:Tag (item)]][[Category:Joke items]]</li><li>[[Spawn Egg|Spawn Egg]]<br/>{{distinguish|Egg|Frogspawn|Dragon Egg|Sniffer Egg|Turtle Egg}}{{Item| image = Spawn Egg.png| extratext = View [[#Gallery|all renders]]| stackable = Yes (64), the same type of spawn egg only| renewable = No}}{{Many images}}A '''spawn egg'''<ref group=fn>Known as '''''<Mob>'' Spawn Egg''' {{in|java}} and '''Spawn ''<Mob>''''' {{in|bedrock}}, where ''<Mob>'' is the name of the mob it spawns.</ref> is an [[item]] used to spawn [[mobs]] directly.== Obtaining ==Spawn eggs can be obtained only in [[Creative]] mode or using [[commands]]. In Creative mode, the [[player]] can press {{control|pick block}} on an existing mob to obtain their respective egg. Spawn eggs are also available in the Creative inventory. There are 77 spawn eggs {{in|bedrock}} and 75 spawn eggs {{in|java}}.== Usage ==A spawn egg is used by pressing {{control|use}} on any surface (top, bottom, or side) with the egg. When used on a top surface, the egg's [[mob]] appears with its feet immediately adjacent to the surface, and its ambient sound is played.Spawn eggs are not thrown (unlike normal [[egg]]s); the player must be within normal range of the block to use the spawn egg. Ocelot and all monster mobs (except [[shulker]]s, [[piglin]]s, [[hoglin]]s; and in Bedrock Edition, also include [[vindicators]], [[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 EggAgent Spawn Egg.png|Agent Spawn EggAllay Spawn Egg.png|Allay Spawn EggAxolotl Spawn Egg.png|Axolotl Spawn EggBat Spawn Egg.png|Bat Spawn EggBee Spawn Egg.png|Bee Spawn EggBlaze Spawn Egg.png|Blaze Spawn EggCamel Spawn Egg.png|Camel Spawn EggCat Spawn Egg.png|Cat Spawn Egg (Java)Cat Spawn Egg BE1.png|Cat Spawn Egg (Bedrock)Cave Spider Spawn Egg.png|Cave Spider Spawn EggChicken Spawn Egg.png|Chicken Spawn EggCod Spawn Egg.png|Cod Spawn EggCow Spawn Egg.png|Cow Spawn EggCreeper Spawn Egg.png|Creeper Spawn EggDolphin Spawn Egg.png|Dolphin Spawn EggDonkey Spawn Egg.png|Donkey Spawn EggDrowned Spawn Egg.png|Drowned Spawn EggElder Guardian Spawn Egg.png|Elder Guardian Spawn EggEnder Dragon Spawn Egg.png|Ender Dragon Spawn EggEnderman Spawn Egg.png|Enderman Spawn EggEndermite Spawn Egg.png|Endermite Spawn EggEvoker Spawn Egg.png|Evoker Spawn EggFox Spawn Egg.png|Fox Spawn EggFrog Spawn Egg.png|Frog Spawn EggGhast Spawn Egg.png|Ghast Spawn EggGlow Squid Spawn Egg.png|Glow Squid Spawn EggGoat Spawn Egg.png|Goat Spawn EggGuardian Spawn Egg.png|Guardian Spawn EggHoglin Spawn Egg.png|Hoglin Spawn EggHorse Spawn Egg.png|Horse Spawn EggHusk Spawn Egg.png|Husk Spawn EggIron Golem Spawn Egg.png|Iron Golem Spawn EggLlama Spawn Egg.png|Llama Spawn EggMagma Cube Spawn Egg.png|Magma Cube Spawn EggMooshroom Spawn Egg.png|Mooshroom Spawn EggMule Spawn Egg.png|Mule Spawn EggNPC Spawn Egg.png|NPC Spawn EggOcelot Spawn Egg.png|Ocelot Spawn EggPanda Spawn Egg.png|Panda Spawn Egg (Java)Panda Spawn Egg BE1.png|Panda Spawn Egg (Bedrock)Parrot Spawn Egg.png|Parrot Spawn EggPhantom Spawn Egg.png|Phantom Spawn EggPig Spawn Egg.png|Pig Spawn EggPiglin Spawn Egg.png|Piglin Spawn EggPiglin Brute Spawn Egg.png|Piglin Brute Spawn EggPillager Spawn Egg.png|Pillager Spawn EggPolar Bear Spawn Egg.png|Polar Bear Spawn EggPufferfish Spawn Egg.png|Pufferfish Spawn EggRabbit Spawn Egg.png|Rabbit Spawn EggRavager Spawn Egg.png|Ravager Spawn EggSalmon Spawn Egg.png|Salmon Spawn EggSheep Spawn Egg.png|Sheep Spawn EggShulker Spawn Egg.png|Shulker Spawn EggSilverfish Spawn Egg.png|Silverfish Spawn EggSkeleton Spawn Egg.png|Skeleton Spawn EggSkeleton Horse Spawn Egg.png|Skeleton Horse Spawn EggSlime Spawn Egg.png|Slime Spawn EggSniffer Spawn Egg.png|Sniffer Spawn EggSnow Golem Spawn Egg.png|Snow Golem Spawn EggSpider Spawn Egg.png|Spider Spawn EggSquid Spawn Egg.png|Squid Spawn EggStray Spawn Egg.png|Stray Spawn EggStrider Spawn Egg.png|Strider Spawn EggTadpole Spawn Egg.png|Tadpole Spawn EggTrader Llama Spawn Egg.png|Trader Llama Spawn EggTropical Fish Spawn Egg.png|Tropical Fish Spawn EggTurtle Spawn Egg.png|Turtle Spawn EggVex Spawn Egg.png|Vex Spawn EggVillager Spawn Egg.png|Villager Spawn EggVindicator Spawn Egg.png|Vindicator Spawn EggWandering 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 EggWitch Spawn Egg.png|Witch Spawn EggWither Spawn Egg.png|Wither Spawn EggWither Skeleton Spawn Egg.png|Wither Skeleton Spawn EggWolf Spawn Egg.png|Wolf Spawn EggZoglin Spawn Egg.png|Zoglin Spawn EggZombie Spawn Egg.png|Zombie Spawn EggZombie Horse Spawn Egg.png|Zombie Horse Spawn EggZombie Villager Spawn Egg.png|Zombie Villager Spawn EggZombified Piglin Spawn Egg.png|Zombified Piglin Spawn EggMask Spawn Egg.png|Mask Spawn Egg (texture)</gallery>{{Hidden end}}=== Screenshots ===<gallery>Classic eggs.png|Various spawn eggs utilizing their old color scheme before [[12w01a]].Upsidedownmob.png|An example of an upside-down mob by renaming the spawn egg "Dinnerbone".UpsideDownMobsEasterEgg.png|Two mobs spawned with the names "Grumm" and "Dinnerbone," respectively.TheLeadPig.png|First screenshot relating to a named mob shown, through a spawn egg.</gallery>== Notes =={{notelist|fn}}== References =={{reflist}}== External Links ==*[https://www.minecraft.net/en-us/article/taking-inventory--spawn-egg Taking Inventory: Spawn Egg] – Minecraft.net on January 6, 2022{{Items}}[[de:Spawn-Ei]][[es:Huevo generador]][[fr:Œufs d'apparition]][[it:Uovo generatore]][[ja:スポーンエッグ]][[ko:생성 알]][[nl:Spawnei]][[pl:Jajo przyzywające]][[pt:Ovo gerador]][[ru:Яйца призывания]][[th:ไข่เสก]][[zh:刷怪蛋]][[Category:Non-renewable resources]]</li></ul></nowiki>
Nether Wart (2024)
Top Articles
Latest Posts
Article information

Author: The Hon. Margery Christiansen

Last Updated:

Views: 5577

Rating: 5 / 5 (50 voted)

Reviews: 81% of readers found this page helpful

Author information

Name: The Hon. Margery Christiansen

Birthday: 2000-07-07

Address: 5050 Breitenberg Knoll, New Robert, MI 45409

Phone: +2556892639372

Job: Investor Mining Engineer

Hobby: Sketching, Cosplaying, Glassblowing, Genealogy, Crocheting, Archery, Skateboarding

Introduction: My name is The Hon. Margery Christiansen, I am a bright, adorable, precious, inexpensive, gorgeous, comfortable, happy person who loves writing and wants to share my knowledge and understanding with you.