Difference between revisions of "Entity metadata"

From wiki.vg
Jump to navigation Jump to search
(→‎Entity Metadata Format: add panda, fox (I incorrectly said I skipped ocelot before; it was fox I skipped), and villager table; move witch to be with other raid participants)
(Start to update to be consistent with the game code)
(16 intermediate revisions by 4 users not shown)
Line 1: Line 1:
Various '''Entities''' have different metadata fields and [[Entity_statuses|status codes]].
+
Various '''Entities''' have different metadata fields and [[Entity statuses|status codes]].
  
== Unmerged information ==
+
== Mobs ==
<div style="background: repeating-linear-gradient(-55deg, #dff, #dff 10px, #fdf 10px, #fdf 20px); padding: 10px">
 
{{Warning2|Unmerged content from 1.14.4.  This needs to be merged eventually but I don't want to do it now.}}
 
  
{{Warning2|Entity metadata shifted in 19w08a; not all entities are copied here.  All subclasses of entity had shift of 1; all subclasses of living had a second shift (2 total).  All entities listed in the article have been updated, but there are ones not listed here. }}
+
Mobs are spawned via [[Protocol#Spawn_Mob|Spawn Mob]].
  
=== Entity Metadata Format ===
+
{{Warning2|Some entities (marked in yellow) should only be spawned using [[Protocol#Spawn_Object|Spawn Object]] and their [[#Objects|Object ID]].  While they also have an entity ID, this ID is only used internally.  Servers should not attempt to spawn these entities using [[Protocol#Spawn Mob|Spawn Mob]] with that entity ID, although clients should accept such packets if they appear.
  
Note that entity metadata is a totally distinct concept from block metadata.  It is not required to send all metadata fields, or even any metadata fields, so long as the terminating entry is correctly sent.
+
Additionally, a few other entities (marked in blue) must be spawned in their own special ways:
 +
* {{Minecraft Wiki|Painting}}s should be spawned using [[Protocol#Spawn_Painting|Spawn Painting]]
 +
* XP orbs should be spawned using [[Protocol#Spawn_Experience_Orb|Spawn Experience Orb]].}}
  
Entity Metadata is an array of entries, each of which looks like the following:
+
{{Warning2|These entity IDs are up to date.  Use [[Data Generators]] or [https://pokechu22.github.io/Burger/1.15.2.html Burger] to get older IDs. If using Burger just replace the version number to what you want to see.}}
  
 
{| class="wikitable"
 
{| class="wikitable"
! Name
+
|-
! Type
+
! Type
! Meaning
+
! Name
|-
+
! bounding box x and z
| Index
+
! bounding box y
| Unsigned Byte
+
! ID
| Unique index key determining the meaning of the following value, see the table below. If this is <code>0xff</code> then the it is the end of the Entity Metadata array and no more is read.
+
|- style="background: #ffff88;"
|-
+
| 0
| Type
+
| Area Effect Cloud
| Optional VarInt Enum
+
| 2.0 * Radius
| Only if Index is not <code>0xff</code>; the type of the index, see the table below
+
| 0.5
|-
+
| <code>minecraft:area_effect_cloud</code>
| Value
+
|- style="background: #ffff88;"
| Optional ''value of Type''
+
| 1
| Only if Index is not <code>0xff</code>: the value of the metadata field
+
| Armor Stand
|}
+
| normal: 0.5 marker: 0.0 small: 0.25
 
+
| normal: 1.975 marker: 0.0 small: 0.9875
{| class="wikitable"
+
| <code>minecraft:armor_stand</code>
! Value of Type field
+
|- style="background: #ffff88;"
! [[Data types|Type]] of Value field
+
| 2
! Notes
+
| Arrow
|-
+
| 0.5
| 0
+
| 0.5
| Byte
+
| <code>minecraft:arrow</code>
|
+
|-
|-
+
| 3
| 1
+
| Bat
| VarInt
+
| 0.5
|
+
| 0.9
|-
+
| <code>minecraft:bat</code>
| 2
+
|-
| Float
+
| 4
|
+
| Bee
|-
+
| 0.7
| 3
+
| 0.6
| String
+
| <code>minecraft:bee</code>
|
+
|-
|-
+
| 5
| 4
+
| Blaze
| [[Chat]]
+
| 0.6
|
+
| 1.8
|-
+
| <code>minecraft:blaze</code>
| 5
+
|- style="background: #ffff88;"
| OptChat (Boolean + Optional [[Chat]])
+
| 6
| [[Chat]] is present if the Boolean is set to true
+
| Boat
|-
+
| 1.375
| 6
+
| 0.5625
| [[Slot]]
+
| <code>minecraft:boat</code>
|
+
|-
|-
+
| 7
| 7
+
| Cat
| Boolean
+
| 0.6
|
+
| 0.7
|-
+
| <code>minecraft:cat</code>
| 8
+
|-
| Rotation
+
| 8
| 3 floats: rotation on x, rotation on y, rotation on z
+
| Cave Spider
|-
+
| 0.7
| 9
+
| 0.5
| [[Data Types#Position|Position]]
+
| <code>minecraft:cave_spider</code>
|
+
|-
|-
+
| 9
| 10
+
| Chicken
| OptPosition (Boolean + Optional Position)
+
| 0.4
| Position is present if the Boolean is set to true
+
| 0.7
|-
+
| <code>minecraft:chicken</code>
| 11
+
|-
| Direction (VarInt)
+
| 10
| (Down = 0, Up = 1, North = 2, South = 3, West = 4, East = 5)
+
| Cod
|-
+
| 0.5
| 12
+
| 0.3
| OptUUID (Boolean + Optional UUID)
+
| <code>minecraft:cod</code>
| UUID is present if the Boolean is set to true
+
|-
|-
+
| 11
| 13
+
| Cow
| OptBlockID (VarInt)
+
| 0.9
| 0 for absent otherwise, <code><nowiki>id &lt;&lt; 4 | data</nowiki></code>
+
| 1.4
|-
+
| <code>minecraft:cow</code>
| 14
+
|-
| [[NBT]]
+
| 12
|
+
| Creeper
|-
+
| 0.6
| 15
+
| 1.7
| [[Data Types#Particle|Particle]]
+
| <code>minecraft:creeper</code>
|
+
|-
|- {{Added}}
+
| 13
| 16
+
| Dolphin
| Villager Data
+
| 0.9
| 3 VarInts: villager type, villager profession, level
+
| 0.6
|- {{Added}}
+
| <code>minecraft:dolphin</code>
| 17
+
|-
| OptVarInt
+
| 14
| 0 for absent; 1 + actual value otherwise.  Used for entity IDs.
+
| Donkey
|- {{Added}}
+
| 1.5
| 18
+
| 1.39648
| Pose
+
| <code>minecraft:donkey</code>
| A VarInt enum: 0: STANDING, 1: FALL_FLYING, 2: SLEEPING, 3: SWIMMING, 4: SPIN_ATTACK, 5: SNEAKING, 6: DYING
+
|- style="background: #ffff88;"
|}
+
| 15
 
+
| Dragon Fireball
Villager type (<code>minecraft:villager_type</code> registry):
+
| 1.0
 
+
| 1.0
{| class="wikitable"
+
| <code>minecraft:dragon_fireball</code>
! Name !! ID
+
|-
|-
+
| 16
| <code>minecraft:desert</code> || 0
+
| Drowned
|-
+
| 0.6
| <code>minecraft:jungle</code> || 1
+
| 1.95
|-
+
| <code>minecraft:drowned</code>
| <code>minecraft:plains</code> || 2
+
|-
|-
+
| 17
| <code>minecraft:savanna</code> || 3
+
| Elder Guardian
|-
+
| 1.9975 (2.35 * guardian)
| <code>minecraft:snow</code> || 4
+
| 1.9975 (2.35 * guardian)
|-
+
| <code>minecraft:elder_guardian</code>
| <code>minecraft:swamp</code> || 5
+
|- style="background: #ffff88;"
|-
+
| 18
| <code>minecraft:taiga</code> || 6
+
| End Crystal
|}
+
| 2.0
 
+
| 2.0
Villager professions (<code>minecraft:villager_profession</code> registry):
+
| <code>minecraft:end_crystal</code>
 
+
|-
{| class="wikitable"
+
| 19
! Name !! ID
+
| Ender Dragon
|-
+
| 16.0
| <code>minecraft:none</code> || 0
+
| 8.0
|-
+
| <code>minecraft:ender_dragon</code>
| <code>minecraft:armorer</code> || 1
+
|-
|-
+
| 20
| <code>minecraft:butcher</code> || 2
+
| Enderman
|-
+
| 0.6
| <code>minecraft:cartographer</code> || 3
+
| 2.9
|-
+
| <code>minecraft:enderman</code>
| <code>minecraft:cleric</code> || 4
+
|-
|-
+
| 21
| <code>minecraft:farmer</code> || 5
+
| Endermite
|-
+
| 0.4
| <code>minecraft:fisherman</code> || 6
+
| 0.3
|-
+
| <code>minecraft:endermite</code>
| <code>minecraft:fletcher</code> || 7
+
|- style="background: #ffff88;"
|-
+
| 22
| <code>minecraft:leatherworker</code> || 8
+
| Evoker
|-
+
| 0.6
| <code>minecraft:librarian</code> || 9
+
| 1.95
|-
+
| <code>minecraft:evoker</code>
| <code>minecraft:mason</code> || 10
+
|-
|-
+
| 23
| <code>minecraft:nitwit</code> || 11
+
| Evoker Fangs
|-
+
| 0.5
| <code>minecraft:shepherd</code> || 12
+
| 0.8
|-
+
| <code>minecraft:evoker_fangs</code>
| <code>minecraft:toolsmith</code> || 13
+
|- style="background: #aaaaff;"
|-
+
| 24
| <code>minecraft:weaponsmith</code> || 14
+
| Experience Orb
|}
+
| 0.5
 
+
| 0.5
=== Mobs ===
+
| <code>minecraft:experience_orb</code>
 
+
|- style="background: #ffff88;"
Entity IDs have shifted with the addition of some new mobs.
+
| 24
 
+
| Eye of Ender
=== Entity ===
+
| 0.25
 
+
| 0.25
The base class.
+
| <code>minecraft:eye_of_ender</code>
 
+
|- style="background: #ffff88;"
{| class="wikitable"
+
| 26
! Index
+
| Falling Block
! Type
+
| 0.98
!style="width: 250px;" colspan="2"| Meaning
+
| 0.98
! Default
+
| <code>minecraft:falling_block</code>
|-
+
|- style="background: #ffff88;"
|rowspan="9"| 0
+
| 27
|rowspan="9"| Byte
+
| Firework Rocket
! Bit mask
+
| 0.25
! Meaning
+
| 0.25
|rowspan="9"| 0
+
| <code>minecraft:firework_rocket</code>
|-
+
|-
| 0x01
+
| 28
| On Fire
+
| Fox
|-
+
| 0.6
| 0x02
+
| 0.7
| Crouched
+
| <code>minecraft:fox</code>
|-
+
|-
| 0x04
+
| 29
| Unused (previously riding)
+
| Ghast
|-
+
| 4.0
| 0x08
+
| 4.0
| Sprinting
+
| <code>minecraft:ghast</code>
|-
+
|-
| 0x10
+
| 30
| Swimming
+
| Giant
|-
+
| 3.6
| 0x20
+
| 12.0
| Invisible
+
| <code>minecraft:giant</code>
|-
+
|-
| 0x40
+
| 31
| Glowing effect
+
| Guardian
|-
+
| 0.85
| 0x80
+
| 0.85
| Flying with {{Minecraft Wiki|elytra}}
+
| <code>minecraft:guardian</code>
|-
+
|-
| 1
+
| 32
| VarInt
+
| Hoglin
|colspan="2"| Air
+
| 1.39648
| 300
+
| 1.4
|-
+
| <code>minecraft:hoglin</code>
| 2
+
|-
| OptChat
+
| 33
|colspan="2"| Custom name
+
| Horse
| empty
+
| 1.39648
|-
+
| 1.6
| 3
+
| <code>minecraft:horse</code>
| Boolean
+
|-
|colspan="2"| Is custom name visible
+
| 34
| false
+
| Husk
|-
+
| 0.6
| 4
+
| 1.95
| Boolean
+
| <code>minecraft:husk</code>
|colspan="2"| Is silent
+
|-
| false
+
| 35
|-
+
| Illusioner
| 5
+
| 0.6
| Boolean
+
| 1.95
|colspan="2"| No gravity
+
| <code>minecraft:illusioner</code>
| false
+
|- style="background: #ffff88;"
|- {{Added}}
+
| 36
| 6
+
| Iron Golem
| Pose
+
| 1.4
|colspan="2"| Pose
+
| 2.7
| STANDING
+
| <code>minecraft:iron_golem</code>
|}
+
|-
 
+
| 37
=== Itemed Throwable ===
+
| Item
 
+
| 0.25
Extends [[#Throwable|Throwable]].
+
| 0.25
 
+
| <code>minecraft:item</code>
Used for all things that previously extended throwable other than potions, which already had an item.
+
|- style="background: #ffff88;"
 
+
| 38
{| class="wikitable" {{added}}
+
| ItemFrame
! Index
+
| 0.75 or 0.0625 (depth)
! Type
+
| 0.75
!style="width: 250px;" colspan="2"| Meaning
+
| <code>minecraft:item_frame</code>
! Default
+
|- style="background: #ffff88;"
|-
+
| 39
| 7
+
| Fireball
| Slot
+
| 1.0
|colspan="2"| Item
+
| 1.0
| empty (which behaves as if it were a specific item, depending on the subclass)
+
| <code>minecraft:fireball</code>
|}
+
|- style="background: #ffff88;"
 
+
| 40
=== Egg ===
+
| Leash Knot
 
+
| 0.375
Extends [[#Itemed_Throwable|Itemed Throwable]].
+
| 0.5
 
+
| <code>minecraft:leash_knot</code>
No additional metadata.
+
|- style="background: #ffff88;"
 
+
| 41
An empty item behaves as if the item were a <code>minecraft:egg</code>.
+
| Lightning Bolt
 
+
| 0.0
=== Ender Pearl ===
+
| 0.0
 
+
| <code>minecraft:lightning_bolt</code>
Extends [[#Itemed_Throwable|Itemed Throwable]].
+
|-
 
+
| 42
No additional metadata.
+
| Llama
 
+
| 0.9
An empty item behaves as if the item were a <code>minecraft:ender_pearl</code>.
+
| 1.87
 
+
| <code>minecraft:llama</code>
=== Experience Bottle ===
+
|- style="background: #ffff88;"
 
+
| 43
Extends [[#Itemed_Throwable|Itemed Throwable]].
+
| Llama Spit
 
+
| 0.25
No additional metadata.
+
| 0.25
 
+
| <code>minecraft:llama_spit</code>
<code>minecraft:experience_bottle</code>
+
|-
 
+
| 44
=== Snowball ===
+
| Magma Cube
 
+
| 0.51000005 * size
Extends [[#Itemed_Throwable|Itemed Throwable]].
+
| 0.51000005 * size
 
+
| <code>minecraft:magma_cube</code>
No additional metadata.
+
|- style="background: #ffff88;"
 
+
| 45
<code>minecraft:snowball</code>
+
| Minecart
 
+
| 0.98
=== Eye of Ender ===
+
| 0.7
 
+
| <code>minecraft:minecart</code>
Extends [[#Entity|Entity]].
+
|- style="background: #ffff88;"
 
+
| 46
{| class="wikitable" {{added}}
+
| Minecart with Chest
! Index
+
| 0.98
! Type
+
| 0.7
!style="width: 250px;" colspan="2"| Meaning
+
| <code>minecraft:chest_minecart</code>
! Default
+
|- style="background: #ffff88;"
|-
+
| 47
| 7
+
| Minecart with Command Block
| Slot
+
| 0.98
|colspan="2"| Item
+
| 0.7
| empty (which behaves as if it were a <code>minecraft:ender_eye</code>)
+
| <code>minecraft:commandblock_minecart</code>
|}
+
|- style="background: #ffff88;"
 
+
| 48
=== Arrow ===
+
| Minecart with Furnace
 
+
| 0.98
Extends [[#Entity|Entity]].
+
| 0.7
 
+
| <code>minecraft:furnace_minecart</code>
Abstract base class for [[#TippedArrow|TippedArrow]] (which is used for regular arrows as well as tipped ones) and Spectral Arrow.
+
|- style="background: #ffff88;"
 
+
| 49
{| class="wikitable"
+
| Minecart with Hopper
! Index
+
| 0.98
! Type
+
| 0.7
!style="width: 250px;" colspan="2"| Meaning
+
| <code>minecraft:hopper_minecart</code>
! Default
+
|- style="background: #ffff88;"
|-
+
| 50
| rowspan="3" | {{change|6|7}}
+
| MinecartSpawner
| rowspan="3" | Byte
+
| 0.98
! Bit mask
+
| 0.7
! Meaning
+
| <code>minecraft:spawner_minecart</code>
| rowspan="3" | 0
+
|- style="background: #ffff88;"
|-
+
| 51
| 0x01
+
| MinecartTNT
| Is critical
+
| 0.98
|-
+
| 0.7
| 0x02
+
| <code>minecraft:tnt_minecart</code>
| Is noclip (used by loyalty tridents when returning)
+
|-
|-
+
| 52
| {{change|7|8}}
+
| Mule
| OptUUID
+
| 1.39648
|colspan="2"| Shooter UUID
+
| 1.6
| Empty
+
| <code>minecraft:mule</code>
|- {{added}}
+
|-
| 9
+
| 53
| Byte
+
| Mushroom
|colspan="2"| Piercing level
+
| 0.9
| 0
+
| 1.4
|}
+
| <code>minecraft:mooshroom</code>
 
+
|-
=== TippedArrow ===
+
| 54
 
+
| Ocelot
Extends [[#Arrow|Arrow]].
+
| 0.6
 
+
| 0.7
Used for both tipped and regular arrows.  If not tipped, then color is set to -1 and no tipped arrow particles are used.
+
| <code>minecraft:ocelot</code>
 
+
|- style="background: #aaaaff;"
{| class="wikitable"
+
| 55
! Index
+
| Painting
! Type
+
| type width or 0.0625 (depth)
!style="width: 250px;" colspan="2"| Meaning
+
| type height
! Default
+
| <code>minecraft:painting</code>
|-
+
|-
| {{change|8|10}}
+
| 56
| VarInt
+
| Panda
|colspan="2"| Color (-1 for no particles)
+
| 1.3
| -1
+
| 1.25
|}
+
| <code>minecraft:panda</code>
 
+
|-
=== Trident ===
+
| 57
 
+
| Parrot
Extends [[#Arrow|Arrow]].
+
| 0.5
 
+
| 0.9
{| class="wikitable"
+
| <code>minecraft:parrot</code>
! Index
+
|-  
! Type
+
| 58
!style="width: 250px;" colspan="2"| Meaning
+
| Phantom
! Default
+
| 0.9
|-
+
| 0.5
| {{change|8|10}}
+
| <code>minecraft:phantom</code>
| VarInt
+
|-
|colspan="2"| Loyalty level (enchantment)
+
| 59
| 0
+
| Pig
|}
+
| 0.9
 
+
| 0.9
=== Itemed Fireball ===
+
| <code>minecraft:pig</code>
 
+
|-
Extends [[#Entity|Entity]].
+
| 60
 
+
| Piglin
Used for regular and small fireballs.  Not used for dragon fireballs and wither skulls.  Interestingly, regular fireballs do not come from an item.
+
| 0.6
 
+
| 1.95
{| class="wikitable" {{added}}
+
| <code>minecraft:piglin</code>
! Index
+
|-
! Type
+
| 61
!style="width: 250px;" colspan="2"| Meaning
+
| Piglin Brute
! Default
+
| 0.6
|-
+
| 1.95
| 7
+
| <code>minecraft:piglin_brute</code>
| Slot
+
|-
|colspan="2"| Item
+
| 62
| empty (which behaves as if it were a <code>minecraft:fire_charge</code>)
+
| Pillager
|}
+
| 0.6
 
+
| 1.95
=== Fireball ===
+
| <code>minecraft:pillager</code>
 
+
|-
Extends {{change|[[#Abstract Fireball|Abstract Fireball]]|[[#Itemed Fireball|Itemed Fireball]]}}.  This is the large fireball shot by ghasts.
+
| 63
 
+
| Polar Bear
No additional metadata.
+
| 1.4
 
+
| 1.4
=== Small Fireball ===
+
| <code>minecraft:polar_bear</code>
 
+
|- style="background: #aaaaff;"
Extends {{change|[[#Abstract Fireball|Abstract Fireball]]|[[#Itemed Fireball|Itemed Fireball]]}}.  This is the fireball shot by blazes and dispensers with fire charges.
+
| 64
 
+
| Primed TNT
No additional metadata.
+
| 0.98
 
+
| 0.98
=== Fireworks ===
+
| <code>minecraft:tnt</code>
 
+
|-
Extends [[#Entity|Entity]].
+
| 65
 
+
| Pufferfish
{| class="wikitable"
+
| 0.7
! Index
+
| 0.7
! Type
+
| <code>minecraft:pufferfish</code>
!style="width: 250px;" colspan="2"| Meaning
+
|-
! Default
+
| 66
|-
+
| Rabbit
| {{change|6|7}}
+
| 0.4
| [[Slot]]
+
| 0.5
|colspan="2"| Firework info
+
| <code>minecraft:rabbit</code>
| empty
+
|-
|-
+
| 67
| {{change|7|8}}
+
| Ravager
| {{Change|VarInt|OptVarInt}}
+
| 1.95
|colspan="2"| Entity ID of entity which used firework (for elytra boosting)
+
| 2.2
| 0
+
| <code>minecraft:ravager</code>
|- {{Added}}
+
|-
| 9
+
| 68
| Boolean
+
| Salmon
|colspan="2"| Shot at angle (from a crossbow)
+
| 0.7
| false
+
| 0.4
|}
+
| <code>minecraft:salmon</code>
 
+
|-
=== Living ===
+
| 69
 
+
| Sheep
Extends [[#Entity|Entity]].
+
| 0.9
 
+
| 1.3
{| class="wikitable"
+
| <code>minecraft:sheep</code>
! Index
+
|-
! Type
+
| 70
!style="width: 250px;" colspan="2"| Meaning
+
| Shulker
! Default
+
| 1.0
|-
+
| 1.0-2.0 (depending on peek)
|rowspan="5"| {{change|6|7}}
+
| <code>minecraft:shulker</code>
|rowspan="5"| Byte
+
|- style="background: #ffff88;"
|colspan="2"| Hand states, used to trigger blocking/eating/drinking animation.
+
| 71
|rowspan="5"| 0
+
| Shulker Bullet
|-
+
| 0.3125
! Bit mask
+
| 0.3125
! Meaning
+
| <code>minecraft:shulker_bullet</code>
|-
+
|-
| 0x01
+
| 72
| Is hand active
+
| Silverfish
|-
+
| 0.4
| 0x02
+
| 0.3
| Active hand (0 = main hand, 1 = offhand)
+
| <code>minecraft:silverfish</code>
|-
+
|-
| 0x04
+
| 73
| In riptide spin attack
+
| Skeleton
|-
+
| 0.6
| {{change|7|8}}
+
| 1.99
| Float
+
| <code>minecraft:skeleton</code>
|colspan="2"| Health
+
|-
| 1.0
+
| 74
|-
+
| Skeleton Horse
| {{change|8|9}}
+
| 1.39648
| VarInt
+
| 1.6
|colspan="2"| Potion effect color (or 0 if there is no effect)
+
| <code>minecraft:skeleton_horse</code>
| 0
+
|-
|-
+
| 75
| {{change|9|10}}
+
| Slime
| Boolean
+
| 0.51000005 * size
|colspan="2"| Is potion effect ambient: reduces the number of particles generated by potions to 1/5 the normal amount
+
| 0.51000005 * size
| false
+
| <code>minecraft:slime</code>
|-
+
|- style="background: #ffff88;"
| {{change|10|11}}
+
| 76
| VarInt
+
| Small Fireball (blaze)
|colspan="2"| Number of arrows in entity
+
| 0.3125
| 0
+
| 0.3125
|- {{Added}}
+
| <code>minecraft:small_fireball</code>
| 12
+
|-
| OptBlockPos
+
| 77
|colspan="2"| Unknown (Bed location?)
+
| Snow Golem
| Absent
+
| 0.7
|}
+
| 1.9
 
+
| <code>minecraft:snow_golem</code>
=== Panda ===
+
|- style="background: #ffff88;"
 
+
| 78
Extends [[#Animal|Animal]].
+
| Snowball
 
+
| 0.25
{| class="wikitable" {{added}}
+
| 0.25
! Index
+
| <code>minecraft:snowball</code>
! Type
+
|- style="background: #ffff88;"
!style="width: 250px;" colspan="2"| Meaning
+
| 79
! Default
+
| SpectralArrow
|-
+
| 0.5
| 15
+
| 0.5
| Integer
+
| <code>minecraft:spectral_arrow</code>
|colspan="2"| Breed timer?  Set to 32 when something happens, and then counts down to 0 again. At 29 and 14 (before counting down), will play the <code>entity.panda.cant_breed</code> sound event.
+
|-
| 0
+
| 80
|-
+
| Spider
| 16
+
| 1.4
| Integer
+
| 0.9
|colspan="2"| Sneeze timer. Counts up from 0; when it hits 1 the <code>entity.panda.pre_sneeze</code> event plays and when it hits 21 the <code>entity.panda.sneeze</code> event plays (and it is set back to 0 and the sneeze flag is cleared).
+
| <code>minecraft:spider</code>
| 0
+
|-
|-
+
| 81
| 17
+
| Squid
| Integer
+
| 0.8
|colspan="2"| Eat timer.  If nonzero, counts upwards.
+
| 0.8
| 0
+
| <code>minecraft:squid</code>
|-
+
|-
| 18
+
| 82
| Byte
+
| Stray
|colspan="2"| Main Gene
+
| 0.6
| 0
+
| 1.99
|-
+
| <code>minecraft:stray</code>
| 19
+
|-
| Byte
+
| 83
|colspan="2"| Hidden Gene
+
| Strider
| 0
+
| 0.9
|-
+
| 1.7
|rowspan="6"| 20
+
| <code>minecraft:strider</code>
|rowspan="6"| Byte
+
|- style="background: #ffff88;"
! Bit mask
+
| 84
! Meaning
+
| Thrown Egg
|rowspan="6"| 0
+
| 0.25
|-
+
| 0.25
| 0x01
+
| <code>minecraft:egg</code>
| Unused
+
|- style="background: #ffff88;"
|-
+
| 85
| 0x02
+
| Thrown Ender Pearl
| Is sneezing
+
| 0.25
|-
+
| 0.25
| 0x04
+
| <code>minecraft:ender_pearl</code>
| Is eating
+
|- style="background: #ffff88;"
|-
+
| 86
| 0x08
+
| Thrown Bottle o' Enchanting
| Unknown
+
| 0.25
|-
+
| 0.25
| 0x10
+
| <code>minecraft:experience_bottle</code>
| Unknown
+
|- style="background: #ffff88;"
|}
+
| 87
 
+
| Potion
=== Fox ===
+
| 0.25
 
+
| 0.25
Extends [[#Animal|Animal]].
+
| <code>minecraft:potion</code>
 
+
|- style="background: #ffff88;"
{| class="wikitable" {{added}}
+
| 88
! Index
+
| Trident
! Type
+
| 0.5
!style="width: 250px;" colspan="2"| Meaning
+
| 0.5
! Default
+
| <code>minecraft:trident</code>
|-
+
|-
| 15
+
| 89
| VarInt
+
| Trader LLama
| colspan="2" | Type (0: red, 1: snow)
+
| 0.9
| 0 (red)
+
| 1.87
|-
+
| <code>minecraft:trader_llama</code>
| rowspan="9" | 16
+
|-
| rowspan="9" | Byte
+
| 90
! Bit mask
+
| Tropical Fish
! Meaning
+
| 0.5
| rowspan="9" | 0
+
| 0.4
|-
+
| <code>minecraft:tropical_fish</code>
| 0x01 || Sitting
+
|-
|-
+
| 91
| 0x02 || ''Unused''
+
| Turtle
|-
+
| 1.2
| 0x04 || Crouching
+
| 0.4
|-
+
| <code>minecraft:turtle</code>
| 0x08 || Unknown
+
|-
|-
+
| 92
| 0x10 || Unknown
+
| Vex
|-
+
| 0.4
| 0x20 || Sleeping
+
| 0.8
|-
+
| <code>minecraft:vex</code>
| 0x40 || Unknown
+
|-
|-
+
| 93
| 0x80 || Unknown
+
| Villager
|-
+
| 0.6
| 17
+
| 1.95
| OptUUID
+
| <code>minecraft:villager</code>
| colspan="2" | First UUID (in <code>UUIDs</code> NBT)?
+
|-
| Absent
+
| 94
|-
+
| Vindicator
| 18
+
| 0.6
| OptUUID
+
| 1.95
| colspan="2" | Second UUID (in <code>UUIDs</code> NBT)?
+
| <code>minecraft:vindicator</code>
| Absent
+
|-
|}
+
| 95
 
+
| Wandering Trader
=== Mooshroom ===
+
| 0.6
 
+
| 1.95
Extends [[#Cow|Cow]].
+
| <code>minecraft:wandering_trader</code>
 
+
|-
{{change|No additional metadata.}}
+
| 96
 
+
| Witch
{| class="wikitable" {{added}}
+
| 0.6
! Index
+
| 1.95
! Type
+
| <code>minecraft:witch</code>
!style="width: 250px;" colspan="2"| Meaning
+
|-
! Default
+
| 97
|-
+
| Wither
| 15
+
| 0.9
| String
+
| 3.5
| colspan="2"| Variant ("red" or "brown")
+
| <code>minecraft:wither</code>
| red
+
|-
|}
+
| 98
 
+
| Wither Skeleton
=== Raid Participant ===
+
| 0.7
 
+
| 2.4
{{change||Extends [[#Monster|Monster]].}}
+
| <code>minecraft:wither_skeleton</code>
 +
|- style="background: #ffff88;"
 +
| 99
 +
| Wither Skull
 +
| 0.3125
 +
| 0.3125
 +
| <code>minecraft:wither_skull</code>
 +
|-
 +
| 100
 +
| Wolf
 +
| 0.6
 +
| 0.85
 +
| <code>minecraft:wolf</code>
 +
|-
 +
| 101
 +
| Zoglin
 +
| 1.39648
 +
| 1.4
 +
| <code>minecraft:zoglin</code>
 +
|-
 +
| 102
 +
| Zombie
 +
| 0.6
 +
| 1.95
 +
| <code>minecraft:zombie</code>
 +
|-
 +
| 103
 +
| Zombie Horse
 +
| 1.39648
 +
| 1.6
 +
| <code>minecraft:zombie_horse</code>
 +
|-
 +
| 104
 +
| Zombie Villager
 +
| 0.6
 +
| 1.95
 +
| <code>minecraft:zombie_villager</code>
 +
|-
 +
| 105
 +
| Zombified Piglin
 +
| 0.6
 +
| 1.95
 +
| <code>minecraft:zombified_piglin</code>
 +
|- style="background: #aaaaff;"
 +
| 106
 +
| Player
 +
| 0.6
 +
| 1.8
 +
| <code>minecraft:player</code>
 +
|- style="background: #ffff88;"
 +
| 107
 +
| Fishing Bobber
 +
| 0.25
 +
| 0.25
 +
| <code>minecraft:fishing_bobber</code>
 +
|}
  
{| class="wikitable" {{added}}
+
== Objects ==
! Index
+
 
! Type
+
Objects are spawned via [[Protocol#Spawn_Object|Spawn Object]]. See [[Object Data]] for more details.
!style="width: 250px;" colspan="2"| Meaning
 
! Default
 
|-
 
| 14
 
| boolean
 
| colspan="2"| Is celebrating
 
| false
 
|}
 
  
"Is celebrating" appears to control the pose for vindicators and does not appear to be used by other types.
+
{{Note|Object IDs and Entity IDs are different.  Most objects also have an entity ID, but should only ever be spawned via [[Protocol#Spawn_Object|Spawn Object]].}}
 
 
=== Abstract Illager ===
 
 
 
Extends {{change|[[#Monster|Monster]]|[[#Raid Participant|Raid Participant]]}}.
 
 
 
{| class="wikitable" {{removed}}
 
! Index
 
! Type
 
!style="width: 250px;" colspan="2"| Meaning
 
! Default
 
|-
 
|rowspan="2"| 12
 
|rowspan="2"| Byte
 
! Bit mask
 
! Meaning
 
|rowspan="2"| 0
 
|-
 
| 0x01
 
| Has target (aggressive state)
 
|}
 
 
 
{{Change||Replaced with pose (presumably?)}}
 
 
 
=== Spellcaster Illager ===
 
 
 
Extends [[#Abstract Illager|Abstract Illlager]].
 
  
 
{| class="wikitable"
 
{| class="wikitable"
! Index
+
|-
! Type
+
! ID
!style="width: 250px;" colspan="2"| Meaning
+
! Name
! Default
+
! bounding box x and z
|-
+
! bounding box y
| {{change|13|15}}
+
|-  
| Byte
+
| 1
| colspan="2"| Spell (0: none, 1: summon vex, 2: attack, 3: wololo, 4: disappear, 5: blindness)
+
| Boat
| 0
+
| 1.375
|}
+
| 0.5625
 
+
|-
=== {{change|EvocationIllager|Evoker}} ===
+
| 2
 
+
| Item Stack ([[Slot]])
Extends [[#Spellcaster Illager|Spellcaster Illager]].
+
| 0.25
 
+
| 0.25
=== {{change|IllusionIllager|Illusioner}} ===
+
|-
 
+
| 3
Extends [[#Spellcaster Illager|Spellcaster Illager]].
+
| Area Effect Cloud
 
+
| 2.0 * Radius
=== Pillager ===
+
| 0.5
 
+
|-
Extends [[#Abstract Illager|Abstract Illlager]].
+
| 10
 
+
| Minecart
{| class="wikitable" {{added}}
+
| 0.98
! Index
+
| 0.7
! Type
+
|-
!style="width: 250px;" colspan="2"| Meaning
+
| 50
! Default
+
| Primed TNT
|-
+
| 0.98
| 15
+
| 0.98
| Boolean
+
|-
| colspan="2"| Using crossbow
+
| 51
| false
+
| End Crystal
|}
+
| 2.0
 
+
| 2.0
=== {{change|VindicationIllager|Vindicator}} ===
+
|-  
 
+
| 60
Extends [[#Abstract Illager|Abstract Illager]].
+
| Tipped arrow (projectile; also used for regular arrows)
 
+
| 0.5
=== Ravager ===
+
| 0.5
 
+
|-
Extends [[#Raid Participant|Raid Participant]]
+
| 61
 
+
| Snowball (projectile)
No additional metadata.
+
| 0.25
 
+
| 0.25
{| class="wikitable" {{added}}
+
|-
! Status
+
| 62
!colspan="2"| Description
+
| Egg (projectile)
|-
+
| 0.25
| 4
+
| 0.25
|colspan="2"| Starts the attack animation.
+
|-  
|-
+
| 63
| 39
+
| Fireball (Ghast projectile)
|colspan="2"| Starts the stun animation.
+
| 1.0
|}
+
| 1.0
 
+
|-
=== Witch ===
+
| 64
 
+
| Small Fireball (Blaze projectile)
Extends {{change|[[#Monster|Monster]]|[[#Raid Participant|Raid Participant]]}}.
+
| 0.3125
 
+
| 0.3125
{| class="wikitable"
+
|-
! Index
+
| 65
! Type
+
| Thrown Ender Pearl
!style="width: 250px;" colspan="2"| Meaning
+
| 0.25
! Default
+
| 0.25
|-
+
|-
| {{change|12|15}}
+
| 66
| Boolean
+
| Wither Skull (Wither projectile)
|colspan="2"| Is drinking potion
+
| 0.3125
| false
+
| 0.3125
|}
+
|-
 
+
| 67
=== AbstractSkeleton ===
+
| Shulker Bullet
 
+
| 0.3125
Extends [[#Monster|Monster]].
+
| 0.3125
 
+
|-  
{| class="wikitable" {{removed}}
+
| 68
! Index
+
| Llama spit
! Type
+
| 0.25
!style="width: 250px;" colspan="2"| Meaning
+
| 0.25
! Default
+
|-  
|-
+
| 70
| {{change|12|14}}
+
| Falling Block
| Boolean
+
| 0.98
|colspan="2"| Is swinging arms
+
| 0.98
| false
+
|-  
|}
+
| 71
 
+
| Item Frame
{{Change||Replaced with pose (presumably?)}}
+
| 0.75 or 0.0625
 
+
| 0.75
=== Zombie ===
+
|-  
 
+
| 72
Extends [[#Monster|Monster]].
+
| Eye of Ender
 
+
| 0.25
{| class="wikitable"
+
| 0.25
! Index
+
|-
! Type
+
| 73
!style="width: 250px;" colspan="2"| Meaning
+
| Thrown Potion
! Default
+
| 0.25
|-
+
| 0.25
| {{change|12|14}}
+
|-
| Boolean
+
| 75
|colspan="2"| Is baby
+
| Thrown Exp Bottle
| false
+
| 0.25
|-
+
| 0.25
| {{change|13|15}}
+
|-  
| VarInt
+
| 76
|colspan="2"| Unused (previously type)
+
| Firework Rocket
| 0
+
| 0.25
|- {{removed}}
+
| 0.25
| 14
+
|-  
| Boolean
+
| 77
|colspan="2"| Are hands held up
+
| Leash Knot
| false
+
| 0.375
|-
+
| 0.5
| {{change|15|16}}
+
|-
| Boolean
+
| 78
|colspan="2"| Is becoming a drowned
+
| ArmorStand
| false
+
| normal: 0.5 marker: 0.0 small: 0.25
|}
+
| normal: 1.975 marker: 0.0 small: 0.9875
 
+
|-
{{Change||Replaced with pose (presumably?)}}
+
| 79
 
+
| Evoker Fangs Fangs
=== Zombie Villager ===
+
| 0.5
 
+
| 0.8
Extends [[#Zombie|Zombie]].
+
|-
 
+
| 90
{| class="wikitable"
+
| Fishing Hook
! Index
+
| 0.25
! Type
+
| 0.25
!style="width: 250px;" colspan="2"| Meaning
+
|-
! Default
+
| 91
|-
+
| Spectral Arrow
| {{change|16|17}}
+
| 0.5
| Boolean
+
| 0.5
|colspan="2"| Is converting
+
|-  
| false
+
| 93
|-  
+
| Dragon Fireball
| {{change|17|18}}
+
| 1.0
| {{Change|VarInt|Villager Data}}
+
| 1.0
|colspan="2"| {{Change|Profession|Villager Data}}
+
|-
| {{change|0|Plains/None/1}}
+
| 94
|}
+
| Trident
 
+
| 0.5
 
+
| 0.5
=== Ocelot ===
+
|}
 
+
 
Extends {{change|[[#TameableAnimal|TameableAnimal]]|[[#Ageable|Ageable]]}}.
+
Since release {{Minecraft Wiki|1.6}}, all minecarts are spawned with object type 10 and their functionality is then specified in the [[Object Data#Minecarts (id 10)|Data field]] within the packet. Also, their visual appearance may be sent via the [[Protocol#Entity Metadata|Entity Metadata]] packet.
 
 
{| class="wikitable"
 
! Index
 
! Type
 
!style="width: 250px;" colspan="2"| Meaning
 
! Default
 
|- {{removed}}
 
| 15
 
| VarInt
 
|colspan="2"| Type (0 = untamed, 1 = tuxedo, 2 = tabby, 3 = siamese).  Used to render regardless as to whether it is tamed or not.
 
| 0
 
|- {{added}}
 
| 15
 
| Boolean
 
|colspan="2"| Is trusting
 
| false
 
|}
 
  
{| class="wikitable" {{added}}
+
== Entity Metadata Format ==
! Status
 
!colspan="2"| Description
 
|-
 
| 40
 
|colspan="2"| Spawn smoke particles (trust gaining failed)
 
|-
 
| 41
 
|colspan="2"| Spawn heart particles (trust gaining succeeded)
 
|}
 
  
=== Cat ===
+
Note that entity metadata is a totally distinct concept from block metadata.  It is not required to send all metadata fields, or even any metadata fields, so long as the terminating entry is correctly sent.
  
Extends [[#TameableAnimal|TameableAnimal]].
+
Entity Metadata is an array of entries, each of which looks like the following:
  
{| class="wikitable" {{added}}
+
{| class="wikitable"
  ! Index
+
  ! Name
 
  ! Type
 
  ! Type
  !style="width: 250px;" colspan="2"| Meaning
+
  ! Meaning
! Default
 
 
  |-
 
  |-
  | 17
+
  | Index
  | VarInt
+
  | Unsigned Byte
  |colspan="2"| Type (0 = tabby, 1 = black, 2 = red, 3 = siamese, 4 = british_shorthair, 5 = calico, 6 = persian, 7 = ragdoll, 8 = white, 9 = all_black)
+
  | Unique index key determining the meaning of the following value, see the table below. If this is <code>0xff</code> then the it is the end of the Entity Metadata array and no more is read.
| 1
 
 
  |-
 
  |-
  | 18
+
  | Type
  | Boolean
+
  | Optional VarInt Enum
  |colspan="2"| Unknown
+
  | Only if Index is not <code>0xff</code>; the type of the index, see the table below
| false
 
 
  |-
 
  |-
  | 19
+
  | Value
  | Boolean
+
  | Optional ''value of Type''
  |colspan="2"| Unknown
+
  | Only if Index is not <code>0xff</code>: the value of the metadata field
| false
 
|-
 
| 20
 
| VarInt
 
|colspan="2"| Collar color (values are those {{Minecraft Wiki|Data_values#Dyes|used with dyes}})
 
| 14 (Red)
 
 
  |}
 
  |}
  
=== Horse ===
+
{| class="wikitable"
 
+
  ! Value of Type field
Extends [[#AbstractHorse|AbstractHorse]].
+
  ! [[Data types|Type]] of Value field
 
+
  ! Notes
{| class="wikitable"  
 
  ! Index
 
! Type
 
  !style="width: 250px;" colspan="2"| Meaning
 
  ! Default
 
 
  |-
 
  |-
| {{change|15|17}}
 
| VarInt
 
|colspan="2"| Variant (Color & Style)
 
 
  | 0
 
  | 0
  |- {{removed}}
+
  | Byte
  | 16
+
  |
| VarInt
 
|colspan="2"| Armor (0: none, 1: iron, 2: gold, 3: diamond)
 
| 0 (none)
 
|- {{removed}}
 
| 17
 
| [[Slot]]
 
|colspan="2"| Armor Item (Forge only)
 
| Empty
 
|}
 
 
 
{{change||Replaced with [[#Entity Equipment|Entity Equipment]] packet. (Uses chestplate slot)}}
 
 
 
=== Trader Llama ===
 
 
 
Extends [[#Llama|Llama]].
 
 
 
No additional metadata.
 
 
 
=== Abstract Merchant ===
 
 
 
Extends [[#Ageable|Ageable]].
 
 
 
{| class="wikitable" {{added}}
 
! Index
 
! Type
 
!style="width: 250px;" colspan="2"| Meaning
 
! Default
 
 
  |-
 
  |-
  | 15
+
  | 1
 
  | VarInt
 
  | VarInt
  |colspan="2"| Head shake timer (starts at 40, decrements each tick)
+
  |
| 0
 
|}
 
 
 
=== Villager ===
 
 
 
Extends {{change|[[#Ageable|Ageable]]|[[#Abstract Merchant|Abstract Merchant]]}}.
 
 
 
{| class="wikitable"
 
! Index
 
! Type
 
!style="width: 250px;" colspan="2"| Meaning
 
! Default
 
 
  |-
 
  |-
  | {{change|13|16}}
+
  | 2
| {{change|VarInt|Villager Data}}
+
  | Float
|colspan="2"| {{Change|Profession (Farmer = 0, Librarian = 1, Priest = 2, Blacksmith = 3, Butcher = 4, Nitwit = 5)|Villager Data}}
+
  |
  | {{change|0|Plains/None/1}}
 
  |}
 
 
 
=== Wandering Trader ===
 
 
 
Extends [[#Abstract Merchant|Abstract Merchant]].
 
 
 
No additional metadata.
 
 
 
=== Bee ===
 
 
 
Extends [[#Animal|Animal]].
 
 
 
{| class="wikitable"
 
! Index
 
! Type
 
!style="width: 250px;" colspan="2"| Meaning
 
! Default
 
 
  |-
 
  |-
  | rowspan="5" | 16
+
  | 3
  | rowspan="5" | Byte
+
  | String
! Bit mask
+
  |
  ! Meaning
 
| rowspan="5" | 0
 
 
  |-
 
  |-
  | 0x01 || ''Unused''
+
  | 4
 +
| [[Chat]]
 +
|
 
  |-
 
  |-
  | 0x02 || Looping
+
  | 5
 +
| OptChat (Boolean + Optional [[Chat]])
 +
| [[Chat]] is present if the Boolean is set to true
 
  |-
 
  |-
  | 0x04 || Has lost stung
+
  | 6
 +
| [[Slot]]
 +
|
 
  |-
 
  |-
  | 0x08 || Has nectar
+
  | 7
 +
| Boolean
 +
|
 
  |-
 
  |-
  | 17
+
  | 8
  | VarInt
+
  | Rotation
  | colspan="2"| Anger time in ticks
+
  | 3 floats: rotation on x, rotation on y, rotation on z
  | 0 (Not angry)
+
|-
  |}
+
  | 9
 
+
  | [[Data Types#Position|Position]]
</div>
+
|
 
+
|-
== Mobs ==
+
| 10
 
+
| OptPosition (Boolean + Optional Position)
Mobs are spawned via [[Protocol#Spawn_Mob|Spawn Mob]].
+
| Position is present if the Boolean is set to true
 
+
|-
{{Warning2|Some entities (marked in yellow) should only be spawned using [[Protocol#Spawn_Object|Spawn Object]] and their [[#Objects|Object ID]].  While they also have an entity ID, this ID is only used internally. Servers should not attempt to spawn these entities using [[Protocol#Spawn Mob|Spawn Mob]] with that entity ID, although clients should accept such packets if they appear.
+
| 11
 
+
| Direction (VarInt)
Additionally, a few other entities (marked in blue) must be spawned in their own special ways:
+
| (Down = 0, Up = 1, North = 2, South = 3, West = 4, East = 5)
* {{Minecraft Wiki|Painting}}s should be spawned using [[Protocol#Spawn_Painting|Spawn Painting]]
+
  |-
* XP orbs should be spawned using [[Protocol#Spawn_Experience_Orb|Spawn Experience Orb]].}}
+
| 12
 
+
| OptUUID (Boolean + Optional UUID)
{| class="wikitable"
+
| UUID is present if the Boolean is set to true
|-
+
|-
! Type
+
| 13
! Name
+
| OptBlockID (VarInt)
! bounding box x and z
+
| 0 for absent (implies air); otherwise, a block state ID as per the global palette
! bounding box y
+
|-
! ID
+
| 14
|- style="background: #ffff88;"
+
| [[NBT]]
| 0
+
|
| AreaEffectCloud
+
|-
| 2.0 * Radius
+
| 15
| 0.5
+
| [[Data Types#Particle|Particle]]
| <code>minecraft:area_effect_cloud</code>
+
|
|- style="background: #ffff88;"
+
|-
| 1
+
| 16
| ArmorStand
+
| Villager Data
| normal: 0.5 marker: 0.0 small: 0.25
+
| 3 VarInts: villager type, villager profession, level
| normal: 1.975 marker: 0.0 small: 0.9875
+
|-
| <code>minecraft:armor_stand</code>
+
| 17
|- style="background: #ffff88;"
+
| OptVarInt
| 2
+
| 0 for absent; 1 + actual value otherwise.  Used for entity IDs.
| Arrow
+
|-
| 0.5
+
| 18
| 0.5
+
| Pose
| <code>minecraft:arrow</code>
+
| A VarInt enum: 0: STANDING, 1: FALL_FLYING, 2: SLEEPING, 3: SWIMMING, 4: SPIN_ATTACK, 5: SNEAKING, 6: DYING
|-
+
|}
| 3
+
 
| Bat
+
Villager type (<code>minecraft:villager_type</code> registry):
| 0.5
+
 
| 0.9
+
{| class="wikitable"
| <code>minecraft:bat</code>
+
! Name !! ID
|-
+
|-
| 4
+
| <code>minecraft:desert</code> || 0
| Blaze
+
|-
| 0.6
+
| <code>minecraft:jungle</code> || 1
| 1.8
+
|-
| <code>minecraft:blaze</code>
+
| <code>minecraft:plains</code> || 2
|- style="background: #ffff88;"
+
|-
| 5
+
| <code>minecraft:savanna</code> || 3
| Boat
+
|-
| 1.375
+
| <code>minecraft:snow</code> || 4
| 0.5625
+
|-
| <code>minecraft:boat</code>
+
| <code>minecraft:swamp</code> || 5
|-
+
|-
| 6
+
| <code>minecraft:taiga</code> || 6
| CaveSpider
+
|}
| 0.7
+
 
| 0.5
+
Villager professions (<code>minecraft:villager_profession</code> registry):
| <code>minecraft:cave_spider</code>
+
 
|-
+
{| class="wikitable"
| 7
+
! Name !! ID
| Chicken
+
|-
| 0.4
+
| <code>minecraft:none</code> || 0
| 0.7
+
|-
| <code>minecraft:chicken</code>
+
| <code>minecraft:armorer</code> || 1
|-
+
|-
| 8
+
| <code>minecraft:butcher</code> || 2
| Cod
+
|-
| 0.9
+
| <code>minecraft:cartographer</code> || 3
| 1.4
+
|-
| <code>minecraft:cod</code>
+
| <code>minecraft:cleric</code> || 4
|-
+
|-
| 9
+
| <code>minecraft:farmer</code> || 5
| Cow
+
|-
| 0.9
+
| <code>minecraft:fisherman</code> || 6
| 1.4
+
|-
| <code>minecraft:cow</code>
+
| <code>minecraft:fletcher</code> || 7
|-
+
|-
| 10
+
| <code>minecraft:leatherworker</code> || 8
| Creeper
+
|-
| 0.6
+
| <code>minecraft:librarian</code> || 9
| 1.7
+
|-
| <code>minecraft:creeper</code>
+
| <code>minecraft:mason</code> || 10
|-
+
|-
| 11
+
| <code>minecraft:nitwit</code> || 11
| Donkey
+
|-
| 1.3964844
+
| <code>minecraft:shepherd</code> || 12
| 1.6
+
|-
| <code>minecraft:donkey</code>
+
| <code>minecraft:toolsmith</code> || 13
|-
+
|-
| 12
+
| <code>minecraft:weaponsmith</code> || 14
| Dolphin
+
|}
| 0.9
+
 
| 0.6
+
Entity classes also recursively inherit fields from classes they extend.
| <code>minecraft:dolphin</code>
+
 
|- style="background: #ffff88;"
+
=== Entity ===
| 13
+
 
| DragonFireball
+
{{metadata inherit|Entity}}
| 1.0
+
 
| 1.0
+
{| class="wikitable"
| <code>minecraft:dragon_fireball</code>
+
! Index
|-
+
! Type
| 14
+
!style="width: 250px;" colspan="2"| Meaning
| Drowned
+
! Default
| ?
+
|-
| ?
+
|rowspan="9"| {{Metadata id|}}
| <code>minecraft:drowned</code>
+
|rowspan="9"| Byte
|-
+
! Bit mask
| 15
+
! Meaning
| ElderGuardian
+
|rowspan="9"| 0
| 1.9975 (2.35 * guardian)
+
|-
| 1.9975 (2.35 * guardian)
+
| 0x01
| <code>minecraft:elder_guardian</code>
+
| On Fire
|- style="background: #ffff88;"
+
|-
| 16
+
| 0x02
| EnderCrystal
+
| Crouched
| 2.0
+
|-
| 2.0
+
| 0x04
| <code>minecraft:end_crystal</code>
+
| Unused (previously riding)
|-
+
|-
| 17
+
| 0x08
| EnderDragon
+
| Sprinting
| 16.0
+
|-
| 8.0
+
| 0x10
| <code>minecraft:ender_dragon</code>
+
| Swimming
|-
+
|-
| 18
+
| 0x20
| Enderman
+
| Invisible
| 0.6
+
|-
| 2.9
+
| 0x40
| <code>minecraft:enderman</code>
+
| Glowing effect
|-
+
|-
| 19
+
| 0x80
| Endermite
+
| Flying with {{Minecraft Wiki|elytra}}
| 0.4
+
|-
| 0.3
+
| {{Metadata id|}}
| <code>minecraft:endermite</code>
+
| VarInt
|- style="background: #ffff88;"
+
|colspan="2"| Air
| 20
+
| 300
| EvocationFangs
+
|-
| 0.5
+
| {{Metadata id|}}
| 0.8
+
| OptChat
| <code>minecraft:evoker_fangs</code>
+
|colspan="2"| Custom name
|-
+
| empty
| 21
+
|-
| EvocationIllager
+
| {{Metadata id|}}
| 0.6
+
| Boolean
| 1.95
+
|colspan="2"| Is custom name visible
| <code>minecraft:evoker</code>
+
| false
|- style="background: #aaaaff;"
+
|-
| 22
+
| {{Metadata id|}}
| XPOrb
+
| Boolean
| 0.5
+
|colspan="2"| Is silent
| 0.5
+
| false
| <code>minecraft:experience_orb</code>
+
|-
|- style="background: #ffff88;"
+
| {{Metadata id|}}
| 23
+
| Boolean
| EyeOfEnderSignal
+
|colspan="2"| No gravity
| 0.25
+
| false
| 0.25
+
|-
| <code>minecraft:eye_of_ender</code>
+
| {{Metadata id|}}
|- style="background: #ffff88;"
+
| Pose
| 24
+
|colspan="2"| Pose
| FallingSand
+
| STANDING
| 0.98
+
|}
| 0.98
+
 
| <code>minecraft:falling_block</code>
+
=== Thrown Egg ===
|- style="background: #ffff88;"
+
 
| 25
+
{{Metadata inherit|Thrown Egg|inherits=Entity}}
| FireworksRocketEntity
+
 
| 0.25
+
{| class="wikitable"
| 0.25
+
! Index
| <code>minecraft:fireworks_rocket</code>
+
! Type
|-
+
!style="width: 250px;" colspan="2"| Meaning
| 26
+
! Default
| Ghast
+
|-
| 4
+
| {{Metadata id|}}
| 4
+
| [[Slot]]
| <code>minecraft:ghast</code>
+
|colspan="2"| Item
|-
+
| Empty (which behaves as if it were a <code>minecraft:egg</code>)
| 27
+
|}
| Giant
+
 
| 3.6
+
=== Thrown Ender Pearl ===
| 10.8
+
 
| <code>minecraft:giant</code>
+
{{Metadata inherit|Thrown Ender Pearl|inherits=Entity}}
|-
+
 
| 28
+
{| class="wikitable"
| Guardian
+
! Index
| 0.85
+
! Type
| 0.85
+
!style="width: 250px;" colspan="2"| Meaning
| <code>minecraft:guardian</code>
+
! Default
|-
+
|-
| 29
+
| {{Metadata id|}}
| Horse (EntityHorse until 1.11)
+
| [[Slot]]
| 1.3964844
+
|colspan="2"| Item
| 1.6
+
| Empty (which behaves as if it were a <code>minecraft:ender_pearl</code>)
| <code>minecraft:horse</code>
+
|}
|-
+
 
| 30
+
=== Thrown Bottle o' Enchanting ===
| Husk
+
 
| 0.6
+
{{Metadata inherit|Thrown Bottle o' Enchanting|inherits=Entity}}
| 1.95
+
 
| <code>minecraft:husk</code>
+
{| class="wikitable"
|-
+
! Index
| 31
+
! Type
| IllusionIllager
+
!style="width: 250px;" colspan="2"| Meaning
| 0.6
+
! Default
| 1.95
+
|-
| <code>minecraft:illusioner</code>
+
| {{Metadata id|}}
|- style="background: #ffff88;"
+
| [[Slot]]
| 32
+
|colspan="2"| Item
| Item
+
| Empty (which behaves as if it were a <code>minecraft:experience_bottle</code>)
| 0.25
+
|}
| 0.25
+
 
| <code>minecraft:item</code>
+
=== Snowball ===
|- style="background: #ffff88;"
+
 
| 33
+
{{Metadata inherit|Snowball|inherits=Entity}}
| ItemFrame
+
 
| 0.75 or 0.0625 (depth)
+
{| class="wikitable"
| 0.75
+
! Index
| <code>minecraft:item_frame</code>
+
! Type
|- style="background: #ffff88;"
+
!style="width: 250px;" colspan="2"| Meaning
| 34
+
! Default
| Fireball (ghast)
+
|-
| 1.0
+
| {{Metadata id|}}
| 1.0
+
| [[Slot]]
| <code>minecraft:fireball</code>
+
|colspan="2"| Item
|- style="background: #ffff88;"
+
| Empty (which behaves as if it were a <code>minecraft:snowball</code>)
| 35
+
|}
| LeashKnot
+
 
| 0.375
+
=== Potion ===
| 0.5
+
 
| <code>minecraft:leash_knot</code>
+
{{Metadata inherit|Potion|inherits=Entity}}
|-
+
 
| 36
+
{| class="wikitable"
| Llama
+
! Index
| 0.9
+
! Type
| 1.87
+
!style="width: 250px;" colspan="2"| Meaning
| <code>minecraft:llama</code>
+
! Default
|- style="background: #ffff88;"
+
|-
| 37
+
| {{Metadata id|}}
| LlamaSpit
+
| [[Slot]]
| 0.25
+
|colspan="2"| Potion which is thrown
| 0.25
+
| Empty
| <code>minecraft:llama_spit</code>
+
|}
|-
+
 
| 38
+
=== Eye of Ender ===
| LavaSlime (Magma Cube)
+
 
| 0.51000005 * size
+
{{Metadata inherit|Eye of Ender|inherits=Entity}}
| 0.51000005 * size
+
 
| <code>minecraft:magma_cube</code>
+
{| class="wikitable"
|- style="background: #ffff88;"
+
! Index
| 39
+
! Type
| MinecartRideable
+
!style="width: 250px;" colspan="2"| Meaning
| 0.98
+
! Default
| 0.7
+
|-
| <code>minecraft:minecart</code>
+
| {{Metadata id|}}
|- style="background: #ffff88;"
+
| [[Slot]]
| 40
+
|colspan="2"| Item
| MinecartChest
+
| Empty (which behaves as if it were a <code>minecraft:ender_eye</code>)
| 0.98
+
|}
| 0.7
+
 
| <code>minecraft:chest_minecart</code>
+
=== Falling Block ===
|- style="background: #ffff88;"
+
 
| 41
+
{{Metadata inherit|Falling Block|inherits=Entity}}
| MinecartCommandBlock
+
 
| 0.98
+
{| class="wikitable"
| 0.7
+
! Index
| <code>minecraft:commandblock_minecart</code>
+
! Type
|- style="background: #ffff88;"
+
!style="width: 250px;" colspan="2"| Meaning
| 42
+
! Default
| MinecartFurnace
+
|-
| 0.98
+
| {{Metadata id|}}
| 0.7
+
| [[Data Types#Position|BlockPos]]
| <code>minecraft:furnace_minecart</code>
+
|colspan="2"| spawn position
|- style="background: #ffff88;"
+
| (0, 0, 0)
| 43
+
|}
| MinecartHopper
+
 
| 0.98
+
=== Area Effect Cloud ===
| 0.7
+
 
| <code>minecraft:hopper_minecart</code>
+
{{Metadata inherit|Area Effect Cloud|inherits=Entity}}
|- style="background: #ffff88;"
+
 
| 44
+
{| class="wikitable"
| MinecartSpawner
+
! Index
| 0.98
+
! Type
| 0.7
+
!style="width: 250px;" colspan="2"| Meaning
| <code>minecraft:spawner_minecart</code>
+
! Default
|- style="background: #ffff88;"
+
|-
| 45
+
| {{Metadata id|}}
| MinecartTNT
+
| Float
| 0.98
+
|colspan="2"| Radius
| 0.7
+
| 0.5
| <code>minecraft:tnt_minecart</code>
+
|-
|-
+
| {{Metadata id|}}
| 46
+
| VarInt
| Mule
+
|colspan="2"| Color (only for mob spell particle)
| 1.3964844
+
| 0
| 1.6
+
|-
| <code>minecraft:mule</code>
+
| {{Metadata id|}}
|-
+
| Boolean
| 47
+
|colspan="2"| Ignore radius and show effect as single point, not area
| MushroomCow (Mooshroom)
+
| false
| 0.9
+
|-
| 1.4
+
| {{Metadata id|}}
| <code>minecraft:mooshroom</code>
+
| Particle
|-
+
| colspan="2"| The [[#Particle]]
| 48
+
| <code>effect</code>
| Ozelot (Ocelot)
+
|}
| 0.6
+
 
| 0.7
+
=== FishingHook ===
| <code>minecraft:ocelot</code>
+
 
|- style="background: #aaaaff;"
+
{{Metadata inherit|FishingHook|inherits=Entity}}
| 49
+
 
| Painting
+
{| class="wikitable"
| type width or 0.0625 (depth)
+
! Index
| type height
+
! Type
| <code>minecraft:painting</code>
+
!style="width: 250px;" colspan="2"| Meaning
|-
+
! Default
| 50
+
|-
| Parrot
+
| {{Metadata id|}}
| 0.5
+
| VarInt
| 0.9
+
|colspan="2"| Hooked entity id + 1, or 0 if there is no hooked entity
| <code>minecraft:parrot</code>
+
| 0
|-
+
|-
| 51
+
| {{Metadata id|}}
| Pig
+
| Boolean
| 0.9
+
|colspan="2"| ???
| 0.9
+
| false
| <code>minecraft:pig</code>
+
|}
|-
+
 
| 52
+
=== Arrow ===
| Pufferfish
+
 
| ?
+
{{Metadata inherit|Arrow|inherits=Entity}}
| ?
+
 
| <code>minecraft:pufferfish</code>
+
Used for both tipped and regular arrows.  If not tipped, then color is set to -1 and no tipped arrow particles are used.
|-
+
 
| 53
+
{| class="wikitable"
| PigZombie
+
! Index
| 0.6
+
! Type
| 1.95
+
!style="width: 250px;" colspan="2"| Meaning
| <code>minecraft:zombie_pigman</code>
+
! Default
|-
+
|-
| 54
+
| rowspan="3" | {{Metadata id|}}
| PolarBear
+
| rowspan="3" | Byte
| 1.3
+
! Bit mask
| 1.4
+
! Meaning
| <code>minecraft:polar_bear</code>
+
| rowspan="3" | 0
|- style="background: #ffff88;"
+
|-
| 55
+
| 0x01
| PrimedTnt
+
| Is critical
| 0.98
+
|-
| 0.98
+
| 0x02
| <code>minecraft:tnt</code>
+
| Is noclip (used by loyalty tridents when returning)
|-
+
|-
| 56
+
| {{Metadata id|}}
| Rabbit
+
| Byte
| 0.4
+
|colspan="2"| Piercing level
| 0.5
+
| 0
| <code>minecraft:rabbit</code>
+
|-
|-
+
| {{Metadata id|}}
| 57
+
| VarInt
| Salmon
+
|colspan="2"| Color (-1 for no particles)
| ?
+
| -1
| ?
+
|}
| <code>minecraft:salmon</code>
+
 
|-
+
=== Spectral Arrow ===
| 58
+
 
| Sheep
+
{{Metadata inherit|Spectral Arrow|inherits=Entity}}
| 0.9
+
 
| 1.3
+
{| class="wikitable"
| <code>minecraft:sheep</code>
+
! Index
|-
+
! Type
| 59
+
!style="width: 250px;" colspan="2"| Meaning
| Shulker
+
! Default
| 1.0
+
|-
| 1.0-2.0 (depending on peek)
+
| rowspan="3" | {{Metadata id|}}
| <code>minecraft:shulker</code>
+
| rowspan="3" | Byte
|- style="background: #ffff88;"
+
! Bit mask
| 60
+
! Meaning
| ShulkerBullet
+
| rowspan="3" | 0
| 0.3125
+
|-
| 0.3125
+
| 0x01
| <code>minecraft:shulker_bullet</code>
+
| Is critical
|-
+
|-
| 61
+
| 0x02
| Silverfish
+
| Is noclip (used by loyalty tridents when returning)
| 0.4
+
|-
| 0.3
+
| {{Metadata id|}}
| <code>minecraft:silverfish</code>
+
| Byte
|-
+
|colspan="2"| Piercing level
| 62
+
| 0
| Skeleton
+
|}
| 0.6
+
 
| 1.99
+
=== Trident ===
| <code>minecraft:skeleton</code>
+
 
|-
+
{{Metadata inherit|Trident|inherits=Entity}}
| 63
+
 
| SkeletonHorse
+
{| class="wikitable"
| 1.3964844
+
! Index
| 1.6
+
! Type
| <code>minecraft:skeleton_horse</code>
+
!style="width: 250px;" colspan="2"| Meaning
|-
+
! Default
| 64 (67: 1.14)
+
|-
| Slime
+
| rowspan="3" | {{Metadata id|}}
| 0.51000005 * size
+
| rowspan="3" | Byte
| 0.51000005 * size
+
! Bit mask
| <code>minecraft:slime</code>
+
! Meaning
|- style="background: #ffff88;"
+
| rowspan="3" | 0
| 65
+
|-
| SmallFireball (blaze)
+
| 0x01
| 0.3125
+
| Is critical
| 0.3125
+
|-
| <code>minecraft:small_fireball</code>
+
| 0x02
|-
+
| Is noclip (used by loyalty tridents when returning)
| 66
+
|-
| SnowMan
+
| {{Metadata id |}}
| 0.7
+
| Byte
| 1.9
+
|colspan="2"| Piercing level
| <code>minecraft:snow_golem</code>
+
| 0
|- style="background: #ffff88;"
+
|-
| 67
+
| {{Metadata id |}}
| Snowball
+
| Byte
| 0.25
+
|colspan="2"| Loyalty level (enchantment)
| 0.25
+
| 0
| <code>minecraft:snowball</code>
+
|-
|- style="background: #ffff88;"
+
| {{Metadata id|}}
| 68
+
| Boolean
| SpectralArrow
+
|colspan="2"| Has enchantment glint
| 0.5
+
| False
| 0.5
+
|}
| <code>minecraft:spectral_arrow</code>
+
 
|-
+
=== Boat ===
| 69
+
 
| Spider
+
{{Metadata inherit|Boat|inherits=Entity}}
| 1.4
+
 
| 0.9
+
{| class="wikitable"
| <code>minecraft:spider</code>
+
! Index
|-
+
! Type
| 70
+
!style="width: 250px;" colspan="2"| Meaning
| Squid
+
! Default
| 0.8
+
|-
| 0.8
+
| {{Metadata id|}}
| <code>minecraft:squid</code>
+
| VarInt
|-
+
|colspan="2"| Time since last hit
| 71
+
| 0
| Stray
+
|-
| 0.6
+
| {{Metadata id|}}
| 1.99
+
| VarInt
| <code>minecraft:stray</code>
+
|colspan="2"| Forward direction
|-
+
| 1
| 72
+
|-
| Tropical Fish
+
| {{Metadata id|}}
| 0.5
+
| Float
| 0.4
+
|colspan="2"| Damage taken
| <code>minecraft:tropical_fish</code>
+
| 0.0
|-
+
|-
| 73
+
| {{Metadata id|}}
| Turtle
+
| VarInt
| 1.2
+
|colspan="2"| Type (0=oak, 1=spruce, 2=birch, 3=jungle, 4=acacia, 5=dark oak)
| 0.4
+
| 0
| <code>minecraft:turtle</code>
+
|-
|- style="background: #ffff88;"
+
| {{Metadata id|}}
| 74
+
| Boolean
| ThrownEgg
+
|colspan="2"| Left paddle turning
| 0.25
+
| false
| 0.25
+
|-
| <code>minecraft:egg</code>
+
| {{Metadata id|}}
|- style="background: #ffff88;"
+
| Boolean
| 75
+
|colspan="2"| Right paddle turning
| ThrownEnderpearl
+
| false
| 0.25
+
|-
| 0.25
+
| {{Metadata id|}}
| <code>minecraft:ender_pearl</code>
+
| VarInt
|- style="background: #ffff88;"
+
|colspan="2"| Splash timer
| 76
+
| 0
| ThrownExpBottle
+
|}
| 0.25
+
 
| 0.25
+
=== End Crystal ===
| <code>minecraft:experience_bottle</code>
+
 
|- style="background: #ffff88;"
+
{{Metadata inherit|End Crystal|inherits=Entity}}
| 77
+
 
| ThrownPotion
+
{| class="wikitable"
| 0.25
+
! Index
| 0.25
+
! Type
| <code>minecraft:potion</code>
+
!style="width: 250px;" colspan="2"| Meaning
|-
+
! Default
| 78
+
|-
| Vex
+
| {{Metadata id|}}
| 0.4
+
| OptBlockPos
| 0.8
+
|colspan="2"| Beam target
| <code>minecraft:vex</code>
+
| Empty
|-
+
|-
| 79
+
| {{Metadata id|}}
| Villager
+
| Boolean
| 0.6
+
|colspan="2"| Show bottom
| 1.95
+
| true
| <code>minecraft:villager</code>
+
|}
|-
+
 
| 80
+
=== Dragon Fireball ===
| VillagerGolem (Iron Golem)
+
 
| 1.4
+
{{Metadata inherit|Dragon Fireball|inherits=Entity}}
| 2.7
+
 
| <code>minecraft:iron_golem}</code>
+
No additional metadata.
|-
+
 
| 81
+
=== Small Fireball ===
| VindicationIllager
+
 
| 0.6
+
{{Metadata inherit|Small Fireball|inherits=Entity}}
| 1.95
+
 
| <code>minecraft:vindicator</code>
+
This is the fireball shot by blazes and dispensers with fire charges.
|-
+
 
| 82
+
{| class="wikitable"
| Witch
+
! Index
| 0.6
+
! Type
| 1.95
+
!style="width: 250px;" colspan="2"| Meaning
| <code>minecraft:witch</code>
+
! Default
|-
+
|-
| 83
+
| {{Metadata id|}}
| WitherBoss
+
| Slot
| 0.9
+
|colspan="2"| Item
| 3.5
+
| Empty (which behaves as if it were a <code>minecraft:fire_charge</code>)
| <code>minecraft:wither</code>
+
|}
|-
 
| 84
 
| WitherSkeleton
 
| 0.7
 
| 2.4
 
| <code>minecraft:wither_skeleton</code>
 
|- style="background: #ffff88;"
 
| 85
 
| WitherSkull
 
| 0.3125
 
| 0.3125
 
| <code>minecraft:wither_skull</code>
 
|-
 
| 86
 
| Wolf
 
| 0.6
 
| 0.85
 
| <code>minecraft:wolf</code>
 
|-
 
| 87
 
| Zombie
 
| 0.6
 
| 1.95
 
| <code>minecraft:zombie</code>
 
|-
 
| 88
 
| ZombieHorse
 
| 1.3964844
 
| 1.6
 
| <code>minecraft:zombie_horse</code>
 
|-
 
| 89
 
| ZombieVillager
 
| 0.6
 
| 1.95
 
| <code>minecraft:zombie_villager</code>
 
|-
 
| 90
 
| Phantom
 
| 0.9
 
| 0.5
 
| <code>minecraft:phantom</code>
 
|- style="background: #aaaaff;"
 
| 91
 
| Lightning Bolt
 
| -
 
| -
 
| <code>minecraft:lightning_bolt</code>
 
|- style="background: #aaaaff;"
 
| 92
 
| Player
 
| 0.8
 
| 1.8
 
| <code>minecraft:player</code>
 
|- style="background: #ffff88;"
 
| 93
 
| Fishing bobber
 
| ?
 
| ?
 
| <code>minecraft:fishing_bobber</code>
 
|- style="background: #ffff88;"
 
| 94
 
| Trident
 
| ?
 
| ?
 
| <code>minecraft:trident</code>
 
|}
 
  
== Objects ==
+
=== Fireball ===
  
Objects are spawned via [[Protocol#Spawn_Object|Spawn Object]]. See [[Object Data]] for more details.
+
{{Metadata inherit|Fireball|inherits=Entity}}
  
{{Note|Object IDs and Entity IDs are different. Most objects also have an entity ID, but should only ever be spawned via [[Protocol#Spawn_Object|Spawn Object]].}}
+
This is the large fireball shot by ghasts.
 +
 
 +
{| class="wikitable"
 +
! Index
 +
! Type
 +
!style="width: 250px;" colspan="2"| Meaning
 +
! Default
 +
|-
 +
| {{Metadata id|}}
 +
| Slot
 +
|colspan="2"| Item
 +
| Empty
 +
  |}
 +
 
 +
=== WitherSkull ===
 +
 
 +
{{Metadata inherit|WitherSkull|inherits=Entity}}
  
 
{| class="wikitable"
 
{| class="wikitable"
|-
+
! Index
! ID
+
! Type
! Name
+
!style="width: 250px;" colspan="2"| Meaning
! bounding box x and z
+
! Default
! bounding box y
+
|-
|-  
+
| {{Metadata id|}}
| 1
+
| Boolean
| Boat
+
|colspan="2"| Invulnerable
| 1.375
+
| false
| 0.6
+
|}
|-
+
 
| 2
+
=== Firework Rocket ===
| Item Stack ([[Slot]])
+
 
| 0.25
+
{{Metadata inherit|Firework Rocket|inherits=Entity}}
| 0.25
+
 
|-
+
{| class="wikitable"
| 3
+
! Index
| Area Effect Cloud
+
! Type
| 2.0 * Radius
+
!style="width: 250px;" colspan="2"| Meaning
| 0.5
+
! Default
|-
+
|-
| 10
+
| {{Metadata id|}}
| Minecart
+
| [[Slot]]
| 0.98
+
|colspan="2"| Firework info
| 0.7
+
| Empty
|-
+
|-
| 50
+
| {{Metadata id|}}
| Activated TNT
+
| OptVarInt
| 0.98
+
|colspan="2"| Entity ID of entity which used firework (for elytra boosting)
| 0.98
+
| Empty
|-  
+
|-
| 51
+
| {{Metadata id|}}
| EnderCrystal
+
| Boolean
| 2.0
+
|colspan="2"| Shot at angle (from a crossbow)
| 2.0
+
| false
|-
+
|}
| 60
+
 
| Tipped arrow (projectile; also used for regular arrows)
+
=== ItemFrame ===
| 0.5
+
 
| 0.5
+
{{Metadata inherit|ItemFrame|inherits=Entity}}
|-  
+
 
| 61
+
{| class="wikitable"
| Snowball (projectile)
+
! Index
| 0.25
+
! Type
| 0.25
+
!style="width: 250px;" colspan="2"| Meaning
|-
+
! Default
| 62
+
|-
| Egg (projectile)
+
| {{Metadata id|}}
| 0.25
+
| [[Slot]]
| 0.25
+
|colspan="2"| Item
|-
+
| Empty
| 63
+
|-
| FireBall (ghast projectile)
+
| {{Metadata id|}}
| 1.0
+
| VarInt
| 1.0
+
|colspan="2"| Rotation
|-
+
| 0
| 64
+
|}
| FireCharge (blaze projectile)
+
 
| 0.3125
+
=== Item ===
| 0.3125
+
 
|-  
+
{{Metadata inherit|Item|inherits=Entity}}
| 65
+
 
| Thrown Enderpearl
+
{| class="wikitable"
| 0.25
+
! Index
| 0.25
+
! Type
|-
+
!style="width: 250px;" colspan="2"| Meaning
| 66
+
! Default
| Wither Skull (projectile)
+
|-
| 0.3125
+
| {{Metadata id|}}
| 0.3125
+
| [[Slot]]
|-
+
|colspan="2"| Item
| 67
+
| Empty
| Shulker Bullet
+
|}
| 0.3125
+
 
| 0.3125
+
=== Abstract Living ===
|-
+
 
| 68
+
{{Metadata inherit|Living|inherits=Entity}}
| Llama spit
+
 
| 0.25
+
{| class="wikitable"
| 0.25
+
! Index
|-
+
! Type
| 70
+
!style="width: 250px;" colspan="2"| Meaning
| Falling Objects
+
! Default
| 0.98
+
|-
| 0.98
+
|rowspan="5"| {{Metadata id|}}
|-
+
|rowspan="5"| Byte
| 71
+
|colspan="2"| Hand states, used to trigger blocking/eating/drinking animation.
| Item frames
+
|rowspan="5"| 0
| 0.75 or 0.0625
+
|-
| 0.75
+
! Bit mask
|-  
+
! Meaning
| 72
+
|-
| Eye of Ender
+
| 0x01
| 0.25
+
| Is hand active
| 0.25
+
|-
|-
+
| 0x02
| 73
+
| Active hand (0 = main hand, 1 = offhand)
| Thrown Potion
+
|-
| 0.25
+
| 0x04
| 0.25
+
| In riptide spin attack
|-
+
|-
| 75
+
| {{Metadata id|}}
| Thrown Exp Bottle
+
| Float
| 0.25
+
  |colspan="2"| Health
| 0.25
+
  | 1.0
|-
 
| 76
 
| Firework Rocket
 
| 0.25
 
| 0.25
 
|-  
 
| 77
 
| Leash Knot
 
| 0.375
 
| 0.5
 
|-
 
| 78
 
| ArmorStand
 
| normal: 0.5 marker: 0.0 small: 0.25
 
| normal: 1.975 marker: 0.0 small: 0.9875
 
|-
 
| 79
 
| Evocation Fangs
 
| 0.5
 
| 0.8
 
|-  
 
| 90
 
| Fishing Hook
 
| 0.25
 
| 0.25
 
|-  
 
| 91
 
| Spectral Arrow
 
| 0.5
 
| 0.5
 
|-  
 
| 93
 
| Dragon Fireball
 
| 1.0
 
| 1.0
 
|-
 
| 94
 
| Trident
 
| ?
 
| ?
 
|}
 
 
 
Since release {{Minecraft Wiki|1.6}}, all minecarts are spawned with object type 10 and their functionality is then specified in the [[Object Data#Minecarts (id 10)|Data field]] within the packet. Also, their visual appearance may be sent via the [[Protocol#Entity Metadata|Entity Metadata]] packet.
 
 
 
== Entity Metadata Format ==
 
 
 
Note that entity metadata is a totally distinct concept from block metadata. It is not required to send all metadata fields, or even any metadata fields, so long as the terminating entry is correctly sent.
 
 
 
Entity Metadata is an array of entries, each of which looks like the following:
 
 
 
{| class="wikitable"
 
  ! Name
 
! Type
 
! Meaning
 
 
  |-
 
  |-
  | Index
+
  | {{Metadata id|}}
  | Unsigned Byte
+
  | VarInt
  | Unique index key determining the meaning of the following value, see the table below. If this is <code>0xff</code> then the it is the end of the Entity Metadata array and no more is read.
+
  |colspan="2"| Potion effect color (or 0 if there is no effect)
 +
| 0
 
  |-
 
  |-
  | Type
+
  | {{Metadata id|}}
| Optional VarInt Enum
+
  | Boolean
  | Only if Index is not <code>0xff</code>; the type of the index, see the table below
+
  |colspan="2"| Is potion effect ambient: reduces the number of particles generated by potions to 1/5 the normal amount
  |-
+
  | false
| Value
 
| Optional ''value of Type''
 
| Only if Index is not <code>0xff</code>: the value of the metadata field
 
  |}
 
 
 
{| class="wikitable"
 
! Value of Type field
 
! [[Data types|Type]] of Value field
 
! Notes
 
 
  |-
 
  |-
 +
| {{Metadata id|}}
 +
| VarInt
 +
|colspan="2"| Number of arrows in entity
 
  | 0
 
  | 0
| Byte
 
|
 
 
  |-
 
  |-
  | 1
+
  | {{Metadata id|}}
 
  | VarInt
 
  | VarInt
  |
+
  |colspan="2"| Health added by absorption (based on the AbsorptionAmount tag)
 +
| 0
 
  |-
 
  |-
  | 2
+
  | {{Metadata id|}}
  | Float
+
| OptBlockPos
  |
+
|colspan="2"| Unknown (Bed location?)
 +
  | Empty
 +
  |}
 +
 
 +
=== Player ===
 +
 
 +
{{Metadata inherit|Player|inherits=Living}}
 +
 
 +
{| class="wikitable"
 +
! Index
 +
! Type
 +
!style="width: 250px;" colspan="2"| Meaning
 +
! Default
 
  |-
 
  |-
  | 3
+
  | {{Metadata id|}}
  | String
+
  | Float
  |
+
|colspan="2"| Additional Hearts
 +
  | 0.0
 
  |-
 
  |-
  | 4
+
  | {{Metadata id|}}
  | [[Chat]]
+
  | VarInt
  |
+
|colspan="2"| Score
 +
  | 0
 
  |-
 
  |-
  | 5
+
  |rowspan="10"| {{Metadata id|}}
  | OptChat (Boolean + Optional [[Chat]])
+
|rowspan="10"| Byte
  | [[Chat]] is present if the Boolean is set to true
+
  |colspan="2"| The Displayed Skin Parts bit mask that is sent in [[Protocol#Client Settings|Client Settings]]
 +
  |rowspan="10"| 0
 
  |-
 
  |-
  | 6
+
  ! Bit mask !! Meaning
| [[Slot]]
 
|
 
 
  |-
 
  |-
  | 7
+
  | 0x01 || Cape enabled
| Boolean
 
|
 
 
  |-
 
  |-
  | 8
+
  | 0x02 || Jacket enabled
| Rotation
 
| 3 floats: rotation on x, rotation on y, rotation on z
 
 
  |-
 
  |-
  | 9
+
  | 0x04 || Left sleeve enabled
| [[Data Types#Position|Position]]
 
|
 
 
  |-
 
  |-
  | 10
+
  | 0x08 || Right sleeve enabled
| OptPosition (Boolean + Optional Position)
 
| Position is present if the Boolean is set to true
 
 
  |-
 
  |-
  | 11
+
  | 0x10 || Left pants leg enabled
| Direction (VarInt)
 
| (Down = 0, Up = 1, North = 2, South = 3, West = 4, East = 5)
 
 
  |-
 
  |-
  | 12
+
  | 0x20 || Right pants leg enabled
| OptUUID (Boolean + Optional UUID)
 
| UUID is present if the Boolean is set to true
 
 
  |-
 
  |-
  | 13
+
  | 0x40 || Hat enabled
| OptBlockID (VarInt)
 
| 0 for absent (implies air); otherwise, a block state ID as per the global palette
 
 
  |-
 
  |-
  | 14
+
  | 0x80 || ''Unused''
| [[NBT]]
 
|
 
 
  |-
 
  |-
  | 15
+
  | {{Metadata id|}}
  | [[Data Types#Particle|Particle]]
+
| Byte
  |
+
  |colspan="2"| Main hand (0 : Left, 1 : Right)
 +
  | 1
 
  |-
 
  |-
  | 16
+
  | {{Metadata id|}}
  | Villager Data
+
  | [[NBT]]
  | 3 VarInts: villager type, villager profession, level
+
|colspan="2"| Left shoulder entity data (for occupying parrot)
 +
  | Empty
 
  |-
 
  |-
  | 17
+
  | {{Metadata id|}}
| OptVarInt
+
  | [[NBT]]
  | 0 for absent; 1 + actual value otherwise.  Used for entity IDs.
+
  |colspan="2"| Right shoulder entity data (for occupying parrot)
  |-
+
  | Empty
| 18
 
  | Pose
 
| A VarInt enum: 0: STANDING, 1: FALL_FLYING, 2: SLEEPING, 3: SWIMMING, 4: SPIN_ATTACK, 5: SNEAKING, 6: DYING
 
 
  |}
 
  |}
  
Villager type (<code>minecraft:villager_type</code> registry):
+
=== ArmorStand ===
 +
 
 +
{{Metadata inherit|ArmorStand|inherits=Living}}
  
 
{| class="wikitable"
 
{| class="wikitable"
  ! Name !! ID
+
  ! Index
 +
! Type
 +
!style="width: 250px;" colspan="2"| Meaning
 +
! Default
 
  |-
 
  |-
  | <code>minecraft:desert</code> || 0
+
  |rowspan="5"| {{Metadata id|}}
 +
|rowspan="5"| Byte
 +
! Bit mask
 +
! Meaning
 +
|rowspan="5"| 0
 
  |-
 
  |-
  | <code>minecraft:jungle</code> || 1
+
  | 0x01
 +
| is Small
 
  |-
 
  |-
  | <code>minecraft:plains</code> || 2
+
  | 0x04
 +
| has Arms
 
  |-
 
  |-
  | <code>minecraft:savanna</code> || 3
+
  | 0x08
 +
| no BasePlate
 
  |-
 
  |-
  | <code>minecraft:snow</code> || 4
+
  | 0x10
 +
| set Marker
 
  |-
 
  |-
  | <code>minecraft:swamp</code> || 5
+
  | {{Metadata id|}}
 +
| Rotations
 +
|colspan="2"| Head rotation
 +
| (0.0, 0.0, 0.0)
 
  |-
 
  |-
  | <code>minecraft:taiga</code> || 6
+
  | {{Metadata id|}}
  |}
+
  | Rotations
 
+
|colspan="2"| Body rotation
Villager professions (<code>minecraft:villager_profession</code> registry):
+
  | (0.0, 0.0, 0.0)
 
 
{| class="wikitable"
 
  ! Name !! ID
 
 
  |-
 
  |-
  | <code>minecraft:none</code> || 0
+
  | {{Metadata id|}}
 +
| Rotations
 +
|colspan="2"| Left arm rotation
 +
| (-10.0, 0.0, -10.0)
 
  |-
 
  |-
  | <code>minecraft:armorer</code> || 1
+
  | {{Metadata id|}}
 +
| Rotations
 +
|colspan="2"| Right arm rotation
 +
| (-15.0, 0.0, 10.0)
 
  |-
 
  |-
  | <code>minecraft:butcher</code> || 2
+
  | {{Metadata id|}}
 +
| Rotations
 +
|colspan="2"| Left leg rotation
 +
| (-1.0, 0.0, -1.0)
 
  |-
 
  |-
  | <code>minecraft:cartographer</code> || 3
+
  | {{Metadata id|}}
|-
+
  | Rotations
| <code>minecraft:cleric</code> || 4
+
  |colspan="2"| Right leg rotation
|-
+
  | (1.0, 0.0, 1.0)
| <code>minecraft:farmer</code> || 5
+
  |}
|-
 
| <code>minecraft:fisherman</code> || 6
 
|-
 
| <code>minecraft:fletcher</code> || 7
 
  |-
 
  | <code>minecraft:leatherworker</code> || 8
 
|-
 
  | <code>minecraft:librarian</code> || 9
 
|-
 
| <code>minecraft:mason</code> || 10
 
|-
 
| <code>minecraft:nitwit</code> || 11
 
|-
 
| <code>minecraft:shepherd</code> || 12
 
|-
 
| <code>minecraft:toolsmith</code> || 13
 
|-
 
| <code>minecraft:weaponsmith</code> || 14
 
  |}
 
  
Entity classes also recursively inherit fields from classes they extend.
+
Note that armor stands with the [[#Entity|invisible flag from the base entity class]] set also cannot be attacked or damaged, except for by the void.
  
=== Entity ===
+
=== Insentient ===
  
{{metadata inherit|Entity}}
+
{{Metadata inherit|Insentient|inherits=Living}}
  
 
{| class="wikitable"
 
{| class="wikitable"
Line 1,887: Line 1,702:
 
  ! Default
 
  ! Default
 
  |-
 
  |-
  |rowspan="9"| {{Metadata id|}}
+
  |rowspan="3"| {{Metadata id|}}
  |rowspan="9"| Byte
+
  |rowspan="3"| Byte
 
  ! Bit mask
 
  ! Bit mask
 
  ! Meaning
 
  ! Meaning
  |rowspan="9"| 0
+
  |rowspan="3"| 0
 
  |-
 
  |-
 
  | 0x01
 
  | 0x01
  | On Fire
+
  | NoAI
 
  |-
 
  |-
 
  | 0x02
 
  | 0x02
  | Crouched
+
  | Left handed
 +
|}
 +
 
 +
=== Ambient ===
 +
 
 +
{{Metadata inherit|Ambient|inherits=Insentient}}
 +
 
 +
No additional metadata.
 +
 
 +
=== Bat ===
 +
 
 +
{{Metadata inherit|Bat|inherits=Ambient}}
 +
 
 +
{| class="wikitable"
 +
! Index
 +
! Type
 +
!style="width: 250px;" colspan="2"| Meaning
 +
! Default
 
  |-
 
  |-
  | 0x04
+
  | rowspan="2"| {{Metadata id|}}
  | Unused (previously riding)
+
| rowspan="2"| Byte
 +
  ! Bit mask
 +
! Meaning
 +
| rowspan="2"| 0
 
  |-
 
  |-
  | 0x08
+
  | 0x01
  | Sprinting
+
  | Is hanging
  |-
+
  |}
| 0x10
+
 
  | Swimming
+
=== Creature ===
  |-
+
 
  | 0x20
+
{{Metadata inherit|Creature|inherits=Insentient}}
  | Invisible
+
 
 +
No additional metadata.
 +
 
 +
=== WaterMob ===
 +
 
 +
{{Metadata inherit|WaterMob|inherits=Creature}}
 +
 
 +
No additional metadata.
 +
 
 +
=== Squid ===
 +
 
 +
{{Metadata inherit|Squid|inherits=WaterMob}}
 +
 
 +
No additional metadata.
 +
 
 +
=== Dolphin ===
 +
 
 +
{{Metadata inherit|Dolphin|inherits=WaterMob}}
 +
 
 +
{| class="wikitable"
 +
  ! Index
 +
  ! Type
 +
  !style="width: 250px;" colspan="2"| Meaning
 +
  ! Default
 
  |-
 
  |-
  | 0x40
+
  | {{Metadata id|}}
  | Glowing effect
+
| Position
 +
|colspan="2"| Treasure position
 +
  | (0, 0, 0)
 
  |-
 
  |-
| 0x80
+
  | {{Metadata id|}}
| Flying with {{Minecraft Wiki|elytra}}
+
  | Boolean
|-
+
  |colspan="2"| Can find treasure
| {{Metadata id|}}
+
  | false
| VarInt
 
|colspan="2"| Air
 
| 300
 
|-
 
  | {{Metadata id|}}
 
  | OptChat
 
  |colspan="2"| Custom name
 
  | empty
 
 
  |-
 
  |-
 
  | {{Metadata id|}}
 
  | {{Metadata id|}}
 
  | Boolean
 
  | Boolean
  |colspan="2"| Is custom name visible
+
  |colspan="2"| Has fish
| false
 
|-
 
| {{Metadata id|}}
 
| Boolean
 
|colspan="2"| Is silent
 
| false
 
|-
 
| {{Metadata id|}}
 
| Boolean
 
|colspan="2"| No gravity
 
 
  | false
 
  | false
|-
 
| {{Metadata id|}}
 
| Pose
 
|colspan="2"| Pose
 
| STANDING
 
 
  |}
 
  |}
  
=== Throwable ===
+
=== Abstract fish ===
  
{{Metadata inherit|Throwable|inherits=Entity}}
+
{{Metadata inherit|Abstract fish|inherits=WaterMob}}
 
 
No additional metadata.
 
 
 
=== Itemed Throwable ===
 
 
 
{{Metadata inherit|Itemed Throwable|inherits=Throwable}}  Used for all things that previously extended throwable other than potions, which already had an item.
 
  
 
{| class="wikitable"
 
{| class="wikitable"
Line 1,965: Line 1,796:
 
  |-
 
  |-
 
  | {{Metadata id|}}
 
  | {{Metadata id|}}
  | Slot
+
  | Boolean
  |colspan="2"| Item
+
  |colspan="2"| From bucket
  | empty (which behaves as if it were a specific item, depending on the subclass)
+
  | False
 
  |}
 
  |}
  
=== Egg ===
+
=== Cod ===
  
{{Metadata inherit|Egg|inherits=Itemed Throwable}}
+
{{Metadata inherit|Cod|inherits=Abstract fish}}
  
 
No additional metadata.
 
No additional metadata.
  
An empty item behaves as if the item were a <code>minecraft:egg</code>.
+
=== Puffer fish ===
  
=== Ender Pearl ===
+
{{Metadata inherit|Puffer fish|inherits=Abstract fish}}
 
 
{{Metadata inherit|Ender Pearl|inherits=Itemed Throwable}}
 
 
 
No additional metadata.
 
 
 
An empty item behaves as if the item were a <code>minecraft:ender_pearl</code>.
 
 
 
=== Experience Bottle ===
 
 
 
{{Metadata inherit|Experience Bottle|inherits=Itemed Throwable}}
 
 
 
No additional metadata.
 
 
 
An empty item behaves as if the item were a <code>minecraft:experience_bottle</code>
 
 
 
=== Snowball ===
 
 
 
{{Metadata inherit|Snowball|inherits=Itemed Throwable}}
 
 
 
No additional metadata.
 
 
 
An empty item behaves as if the item were a <code>minecraft:snowball</code>
 
 
 
=== Potion ===
 
 
 
{{Metadata inherit|Potion|inherits=Throwable}}
 
  
 
{| class="wikitable"
 
{| class="wikitable"
Line 2,013: Line 1,818:
 
  |-
 
  |-
 
  | {{Metadata id|}}
 
  | {{Metadata id|}}
  | [[Slot]]
+
  | VarInt
  |colspan="2"| Potion which is thrown
+
  |colspan="2"| PuffState (varies from 0 to 2)
  | Empty
+
  | 0
 
  |}
 
  |}
  
=== Eye of Ender ===
+
=== Salmon ===
 +
 
 +
{{Metadata inherit|Salmon|inherits=Abstract fish}}
 +
 
 +
No additional metadata.
 +
 
 +
=== Tropical fish ===
  
{{Metadata inherit|Eye of Ender|inherits=Entity}}
+
{{Metadata inherit|Tropical fish|inherits=Abstract fish}}
  
 
{| class="wikitable"
 
{| class="wikitable"
Line 2,029: Line 1,840:
 
  |-
 
  |-
 
  | {{Metadata id|}}
 
  | {{Metadata id|}}
  | Slot
+
  | VarInt
  |colspan="2"| Item
+
  |colspan="2"| Variant
  | empty (which behaves as if it were a <code>minecraft:ender_eye</code>)
+
  | 0
 
  |}
 
  |}
  
=== FallingBlock ===
+
=== Ageable ===
  
{{Metadata inherit|FallingBlock|inherits=Entity}}
+
{{Metadata inherit|Ageable|inherits=Creature}}
  
 
{| class="wikitable"
 
{| class="wikitable"
Line 2,045: Line 1,856:
 
  |-
 
  |-
 
  | {{Metadata id|}}
 
  | {{Metadata id|}}
  | [[Data Types#Position|Position]]
+
  | Boolean
  |colspan="2"| spawn position
+
  |colspan="2"| Is baby
  | (0, 0, 0)
+
  | false
 
  |}
 
  |}
  
=== AreaEffectCloud ===
+
=== Animal ===
 +
 
 +
{{Metadata inherit|Animal|inherits=Ageable}}
 +
 
 +
No additional metadata.
 +
 
 +
=== AbstractHorse ===
  
{{Metadata inherit|AreaEffectCloud|inherits=Entity}}
+
{{Metadata inherit|AbstractHorse|inherits=Animal}}
  
 
{| class="wikitable"
 
{| class="wikitable"
Line 2,060: Line 1,877:
 
  ! Default
 
  ! Default
 
  |-
 
  |-
  | {{Metadata id|}}
+
  |rowspan="9"| {{Metadata id|}}
  | Float
+
  |rowspan="9"| Byte
  |colspan="2"| Radius
+
! Bit mask
| 0.5
+
! Meaning
 +
  |rowspan="9"| 0
 
  |-
 
  |-
  | {{Metadata id|}}
+
  | 0x01
| VarInt
+
  | ''Unused''
|colspan="2"| Color (only for mob spell particle)
 
  | 0
 
 
  |-
 
  |-
  | {{Metadata id|}}
+
  | 0x02
  | Boolean
+
| Is Tame
  |colspan="2"| Ignore radius and show effect as single point, not area
+
|-
  | false
+
| 0x04
 +
| Is saddled
 +
|-
 +
| 0x08
 +
| Has bred
 +
|-
 +
| 0x10
 +
| Is eating
 +
|-
 +
  | 0x20
 +
  | Is rearing (on hind legs)
 +
|-
 +
| 0x40
 +
| Is mouth open
 +
|-
 +
| 0x80
 +
  | ''Unused''
 
  |-
 
  |-
 
  | {{Metadata id|}}
 
  | {{Metadata id|}}
  | Particle
+
  | OptUUID
  | colspan="2"| The [[#Particle]]
+
  |colspan="2"| Owner
  | <code>effect</code>
+
  | Absent
 
  |}
 
  |}
  
=== FishingHook ===
+
=== Horse ===
  
{{Metadata inherit|FishingHook|inherits=Entity}}
+
{{Metadata inherit|Horse|inherits=AbstractHorse}}
  
{| class="wikitable"
+
{| class="wikitable"  
 
  ! Index
 
  ! Index
 
  ! Type
 
  ! Type
Line 2,093: Line 1,925:
 
  | {{Metadata id|}}
 
  | {{Metadata id|}}
 
  | VarInt
 
  | VarInt
  |colspan="2"| Hooked entity id + 1, or 0 if there is no hooked entity
+
  |colspan="2"| Variant (Color & Style)
 
  | 0
 
  | 0
 
  |}
 
  |}
  
=== Arrow ===
+
=== ZombieHorse ===
  
{{Metadata inherit|Arrow|inherits=Entity}}
+
{{Metadata inherit|ZombieHorse|inherits=AbstractHorse}}
 +
 
 +
=== SkeletonHorse ===
 +
 
 +
{{Metadata inherit|SkeletonHorse|inherits=AbstractHorse}}
  
Abstract base class for [[#TippedArrow|TippedArrow]] (which is used for regular arrows as well as tipped ones) and Spectral Arrow.
+
=== ChestedHorse ===
  
{| class="wikitable"
+
{{Metadata inherit|ChestedHorse|inherits=AbstractHorse}}
 +
 
 +
{| class="wikitable"  
 
  ! Index
 
  ! Index
 
  ! Type
 
  ! Type
 
  !style="width: 250px;" colspan="2"| Meaning
 
  !style="width: 250px;" colspan="2"| Meaning
 
  ! Default
 
  ! Default
|-
 
| rowspan="3" | {{Metadata id|}}
 
| rowspan="3" | Byte
 
! Bit mask
 
! Meaning
 
| rowspan="3" | 0
 
|-
 
| 0x01
 
| Is critical
 
|-
 
| 0x02
 
| Is noclip (used by loyalty tridents when returning)
 
 
  |-
 
  |-
 
  | {{Metadata id|}}
 
  | {{Metadata id|}}
  | OptUUID
+
  | Boolean
  |colspan="2"| Shooter UUID
+
  |colspan="2"| Has Chest
  | Empty
+
  | false
|-
 
| {{Metadata id|}}
 
| Byte
 
|colspan="2"| Peircing level
 
| 0
 
 
  |}
 
  |}
  
=== TippedArrow ===
+
=== Donkey ===
  
{{Metadata inherit|TippedArrow|inherits=Arrow}}
+
{{Metadata inherit|Donkey|inherits=ChestedHorse}}
  
Used for both tipped and regular arrows.  If not tipped, then color is set to -1 and no tipped arrow particles are used.
+
=== Llama ===
 +
 
 +
{{Metadata inherit|Llama|inherits=ChestedHorse}}
  
 
{| class="wikitable"
 
{| class="wikitable"
Line 2,146: Line 1,969:
 
  | {{Metadata id|}}
 
  | {{Metadata id|}}
 
  | VarInt
 
  | VarInt
  |colspan="2"| Color (-1 for no particles)
+
  | colspan="2"| Strength (number of columns of 3 slots in the llama's inventory once a chest is equipped)
 +
| 0
 +
|-
 +
| {{Metadata id|}}
 +
| VarInt
 +
| colspan="2"| Carpet color (a dye color, or -1 if no carpet equipped)
 
  | -1
 
  | -1
|}
 
 
=== Trident ===
 
 
{{Metadata inherit|Trident|inherits=Arrow}}
 
 
{| class="wikitable"
 
! Index
 
! Type
 
!style="width: 250px;" colspan="2"| Meaning
 
! Default
 
 
  |-
 
  |-
 
  | {{Metadata id|}}
 
  | {{Metadata id|}}
 
  | VarInt
 
  | VarInt
  |colspan="2"| Loyalty level (enchantment)
+
  | colspan="2"| Variant (0: <code>llama_creamy.png</code>, 1: <code>llama_white.png</code>, 2: <code>llama_brown.png</code>, 3: <code>llama_gray.png</code>)
 
  | 0
 
  | 0
 
  |}
 
  |}
  
=== Boat ===
+
=== Trader Llama ===
 +
 
 +
{{Metadata inherit|Trader Llama|Llama}}
 +
 
 +
No additional metadata.
 +
 
 +
=== Mule ===
 +
 
 +
{{Metadata inherit|Mule|inherits=ChestedHorse}}
 +
 
 +
=== Bee ===
  
{{Metadata inherit|Boat|inherits=Entity}}
+
{{Metadata inherit|Bee|inherits=Animal}}
  
 
{| class="wikitable"
 
{| class="wikitable"
Line 2,176: Line 2,003:
 
  ! Default
 
  ! Default
 
  |-
 
  |-
  | {{Metadata id|}}
+
  |rowspan="5"| {{Metadata id|}}
  | VarInt
+
  |rowspan="5"| Byte
  |colspan="2"| Time since last hit
+
  |colspan="2"| Flags
  | 0
+
  |rowspan="5"| 0
 +
|-
 +
| 0x01 || ''Unused''
 
  |-
 
  |-
  | {{Metadata id|}}
+
  | 0x02 || Is angry
| VarInt
 
|colspan="2"| Forward direction
 
| 1
 
 
  |-
 
  |-
  | {{Metadata id|}}
+
  | 0x04 || Has stung
| Float
 
|colspan="2"| Damage taken
 
| 0.0
 
 
  |-
 
  |-
  | {{Metadata id|}}
+
  | 0x08 || Has nectar
| VarInt
 
|colspan="2"| Type (0=oak, 1=spruce, 2=birch, 3=jungle, 4=acacia, 5=dark oak)
 
| 0
 
|-
 
| {{Metadata id|}}
 
| Boolean
 
|colspan="2"| Left paddle turning
 
| false
 
|-
 
| {{Metadata id|}}
 
| Boolean
 
|colspan="2"| Right paddle turning
 
| false
 
 
  |-
 
  |-
 
  | {{Metadata id|}}
 
  | {{Metadata id|}}
 
  | VarInt
 
  | VarInt
  |colspan="2"| Splash timer
+
  | colspan="2"| Anger time in ticks
  | 0
+
  | 0 (Not angry)
 
  |}
 
  |}
  
=== EnderCrystal ===
+
=== Fox ===
  
{{Metadata inherit|EnderCrystal|inherits=Entity}}
+
{{Metadata inherit|Fox|inherits=Animal}}
  
 
{| class="wikitable"
 
{| class="wikitable"
Line 2,223: Line 2,033:
 
  |-
 
  |-
 
  | {{Metadata id|}}
 
  | {{Metadata id|}}
  | OptPosition
+
  | VarInt
  |colspan="2"| Beam target
+
  | colspan="2" | Type (0: red, 1: snow)
  | Absent
+
| 0 (red)
 +
|-
 +
| rowspan="9" | {{Metadata id|}}
 +
| rowspan="9" | Byte
 +
! Bit mask
 +
! Meaning
 +
| rowspan="9" | 0
 +
|-
 +
| 0x01 || Sitting
 +
|-
 +
| 0x02 || ''Unused''
 +
|-
 +
| 0x04 || Crouching
 +
|-
 +
| 0x08 || Unknown
 +
|-
 +
| 0x10 || Unknown
 +
|-
 +
| 0x20 || Sleeping
 +
|-
 +
| 0x40 || Unknown
 +
|-
 +
| 0x80 || Unknown
 +
|-
 +
| {{Metadata id|}}
 +
| OptUUID
 +
| colspan="2" | First UUID (in <code>UUIDs</code> NBT)?
 +
  | Absent
 
  |-
 
  |-
 
  | {{Metadata id|}}
 
  | {{Metadata id|}}
  | Boolean
+
  | OptUUID
  |colspan="2"| Show bottom
+
  | colspan="2" | Second UUID (in <code>UUIDs</code> NBT)?
  | true
+
  | Absent
 
  |}
 
  |}
  
=== Abstract Fireball ===
+
=== Ocelot ===
  
{{Metadata inherit|Abstract Fireball|inherits=Entity}}
+
{{Metadata inherit|Ocelot|inherits=Animal}}
  
No additional metadata.
+
{| class="wikitable"
 
+
  ! Index
=== Dragon Fireball ===
 
 
 
{{Metadata inherit|Dragon Fireball|inherits=Abstract Fireball}}
 
 
 
No additional metadata.
 
 
 
=== Itemed Fireball ===
 
 
 
{{Metadata inherit|Itemed Fireball|inherits=Abstract Fireball}}
 
 
 
Used for regular and small fireballs.  Not used for dragon fireballs and wither skulls.  Interestingly, regular fireballs do not come from an item.
 
 
 
{| class="wikitable"
 
  ! Index
 
 
  ! Type
 
  ! Type
 
  !style="width: 250px;" colspan="2"| Meaning
 
  !style="width: 250px;" colspan="2"| Meaning
Line 2,258: Line 2,081:
 
  |-
 
  |-
 
  | {{Metadata id|}}
 
  | {{Metadata id|}}
  | Slot
+
  | Boolean
  |colspan="2"| Item
+
  |colspan="2"| Is trusting
  | empty (which behaves as if it were a <code>minecraft:fire_charge</code>)
+
  | false
 
  |}
 
  |}
  
=== Fireball ===
+
=== Panda ===
  
{{Metadata inherit|Fireball|inherits=Itemed Fireball}}  This is the large fireball shot by ghasts.
+
{{Metadata inherit|Panda|inherits=Animal}}
 
 
No additional metadata.
 
 
 
=== Small Fireball ===
 
 
 
{{Metadata inherit|Small Fireball|inherits=Itemed Fireball}}  This is the fireball shot by blazes and dispensers with fire charges.
 
 
 
No additional metadata.
 
 
 
=== WitherSkull ===
 
 
 
{{Metadata inherit|WitherSkull|inherits=Abstract Fireball}}
 
  
 
{| class="wikitable"
 
{| class="wikitable"
Line 2,286: Line 2,097:
 
  |-
 
  |-
 
  | {{Metadata id|}}
 
  | {{Metadata id|}}
  | Boolean
+
  | Integer
  |colspan="2"| Invulnerable
+
  |colspan="2"| Breed timer?  Set to 32 when something happens, and then counts down to 0 again.  At 29 and 14 (before counting down), will play the <code>entity.panda.cant_breed</code> sound event.
  | false
+
  | 0
  |}
+
  |-
 
+
| {{Metadata id|}}
=== Fireworks ===
+
| Integer
 
+
  |colspan="2"| Sneeze timer.  Counts up from 0; when it hits 1 the <code>entity.panda.pre_sneeze</code> event plays and when it hits 21 the <code>entity.panda.sneeze</code> event plays (and it is set back to 0 and the sneeze flag is cleared).
{{Metadata inherit|Fireworks|inherits=Entity}}
+
  | 0
 
 
{| class="wikitable"
 
  ! Index
 
! Type
 
!style="width: 250px;" colspan="2"| Meaning
 
  ! Default
 
 
  |-
 
  |-
 
  | {{Metadata id|}}
 
  | {{Metadata id|}}
  | [[Slot]]
+
  | Integer
  |colspan="2"| Firework info
+
  |colspan="2"| Eat timer.  If nonzero, counts upwards.
  | empty
+
  | 0
 
  |-
 
  |-
 
  | {{Metadata id|}}
 
  | {{Metadata id|}}
  | VarInt
+
  | Byte
  |colspan="2"| Entity ID of entity which used firework (for elytra boosting)
+
  |colspan="2"| Main Gene
 
  | 0
 
  | 0
 
  |-
 
  |-
 
  | {{Metadata id|}}
 
  | {{Metadata id|}}
  | Boolean
+
  | Byte
  |colspan="2"| Shot at angle (from a crossbow)
+
  |colspan="2"| Hidden Gene
  | false
+
  | 0
  |}
+
  |-
 
+
|rowspan="6"| {{Metadata id|}}
=== Hanging ===
+
|rowspan="6"| Byte
 
+
! Bit mask
{{Metadata inherit|Hanging|inherits=Entity}}
+
! Meaning
 
+
|rowspan="6"| 0
No additional metadata.
+
|-
 +
| 0x01
 +
| Unused
 +
|-
 +
| 0x02
 +
| Is sneezing
 +
|-
 +
| 0x04
 +
| Is rolling
 +
|-
 +
| 0x08
 +
| Is sitting
 +
|-
 +
| 0x10
 +
| Is on back
 +
|}
  
=== ItemFrame ===
+
=== Pig ===
  
{{Metadata inherit|ItemFrame|inherits=Hanging}}
+
{{Metadata inherit|Pig|inherits=Animal}}
  
 
{| class="wikitable"
 
{| class="wikitable"
Line 2,334: Line 2,154:
 
  |-
 
  |-
 
  | {{Metadata id|}}
 
  | {{Metadata id|}}
  | [[Slot]]
+
  | Boolean
  |colspan="2"| Item
+
  |colspan="2"| Has saddle
  | Empty
+
  | false
 
  |-
 
  |-
 
  | {{Metadata id|}}
 
  | {{Metadata id|}}
 
  | VarInt
 
  | VarInt
  |colspan="2"| Rotation
+
  |colspan="2"| Total time to "boost" with a carrot on a stick for
 
  | 0
 
  | 0
 
  |}
 
  |}
  
=== Item ===
+
Whenever a carrot on a stick is used, if the pig is not currently boosting it will start to boost for 140 to 980 (inclusive) ticks.  When boost time is changed, a counter is reset which counts up to the boost time, after which boosting will stop.  The value remains set at its modified value even after boosting is stopped.
 +
 
 +
=== Rabbit ===
  
{{Metadata inherit|Item|inherits=Entity}}
+
{{Metadata inherit|Rabbit|inherits=Animal}}
  
 
{| class="wikitable"
 
{| class="wikitable"
Line 2,355: Line 2,177:
 
  |-
 
  |-
 
  | {{Metadata id|}}
 
  | {{Metadata id|}}
  | [[Slot]]
+
  | VarInt
  |colspan="2"| Item
+
  |colspan="2"| Type
  | Empty
+
  | 0
 
  |}
 
  |}
  
=== Living ===
+
=== Turtle ===
  
{{Metadata inherit|Living|inherits=Entity}}
+
{{Metadata inherit|Turtle|inherits=Animal}}
  
 
{| class="wikitable"
 
{| class="wikitable"
Line 2,369: Line 2,191:
 
  !style="width: 250px;" colspan="2"| Meaning
 
  !style="width: 250px;" colspan="2"| Meaning
 
  ! Default
 
  ! Default
|-
 
|rowspan="5"| {{Metadata id|}}
 
|rowspan="5"| Byte
 
|colspan="2"| Hand states, used to trigger blocking/eating/drinking animation.
 
|rowspan="5"| 0
 
|-
 
! Bit mask
 
! Meaning
 
|-
 
| 0x01
 
| Is hand active
 
|-
 
| 0x02
 
| Active hand (0 = main hand, 1 = offhand)
 
|-
 
| 0x04
 
| In riptide spin attack
 
 
  |-
 
  |-
 
  | {{Metadata id|}}
 
  | {{Metadata id|}}
  | Float
+
  | BlockPos
  |colspan="2"| Health
+
  |colspan="2"| Home pos
  | 1.0
+
  | (0, 0, 0)
 
  |-
 
  |-
 
  | {{Metadata id|}}
 
  | {{Metadata id|}}
  | VarInt
+
  | Boolean
  |colspan="2"| Potion effect color (or 0 if there is no effect)
+
  |colspan="2"| Has egg
  | 0
+
  | false
 
  |-
 
  |-
 
  | {{Metadata id|}}
 
  | {{Metadata id|}}
 
  | Boolean
 
  | Boolean
  |colspan="2"| Is potion effect ambient: reduces the number of particles generated by potions to 1/5 the normal amount
+
  |colspan="2"| Laying egg
 
  | false
 
  | false
 
  |-
 
  |-
 
  | {{Metadata id|}}
 
  | {{Metadata id|}}
  | VarInt
+
  | BlockPos
  |colspan="2"| Number of arrows in entity
+
  |colspan="2"| Travel pos
  | 0
+
  | (0, 0, 0)
 +
|-
 +
| {{Metadata id|}}
 +
| Boolean
 +
|colspan="2"| Going home
 +
| false
 
  |-
 
  |-
 
  | {{Metadata id|}}
 
  | {{Metadata id|}}
  | OptBlockPos
+
  | Boolean
  |colspan="2"| Unknown (Bed location?)
+
  |colspan="2"| Traveling
  | Absent
+
  | false
 
  |}
 
  |}
  
=== Player ===
+
=== Polar Bear ===
  
{{Metadata inherit|Player|inherits=Living}}
+
{{Metadata inherit|Polar Bear|inherits=Animal}}
  
 
{| class="wikitable"
 
{| class="wikitable"
Line 2,424: Line 2,234:
 
  |-
 
  |-
 
  | {{Metadata id|}}
 
  | {{Metadata id|}}
  | Float
+
  | Boolean
  |colspan="2"| Additional Hearts
+
  |colspan="2"| Standing up
  | 0.0
+
  | false
  |-
+
  |}
| {{Metadata id|}}
+
 
| VarInt
+
=== Chicken ===
|colspan="2"| Score
+
 
| 0
+
{{Metadata inherit|Chicken|inherits=Animal}}
|-
+
 
|rowspan="10"| {{Metadata id|}}
+
No additional metadata.
|rowspan="10"| Byte
+
 
  |colspan="2"| The Displayed Skin Parts bit mask that is sent in [[Protocol#Client Settings|Client Settings]]
+
=== Cow ===
  |rowspan="10"| 0
+
 
 +
{{Metadata inherit|Cow|inherits=Animal}}
 +
 
 +
No additional metadata.
 +
 
 +
=== Mooshroom ===
 +
 
 +
{{Metadata inherit|Mooshroom|inherits=Cow}}
 +
 
 +
{| class="wikitable"
 +
  ! Index
 +
! Type
 +
!style="width: 250px;" colspan="2"| Meaning
 +
  ! Default
 
  |-
 
  |-
  ! Bit mask !! Meaning
+
| {{Metadata id|}}
 +
| String
 +
| colspan="2"| Variant ("red" or "brown")
 +
| red
 +
|}
 +
 
 +
=== Sheep ===
 +
 
 +
{{Metadata inherit|Sheep|inherits=Animal}}
 +
 
 +
{| class="wikitable"
 +
  ! Index
 +
! Type
 +
!style="width: 250px;" colspan="2"| Meaning
 +
! Default
 
  |-
 
  |-
  | 0x01 || Cape enabled
+
  |rowspan="3"| {{Metadata id|}}
  |-
+
  |rowspan="3"| Byte
  | 0x02 || Jacket enabled
+
  ! Bit mask
  |-
+
  ! Meaning
  | 0x04 || Left sleeve enabled
+
  |rowspan="3"| 0
 
  |-
 
  |-
  | 0x08 || Right sleeve enabled
+
  | 0x0F
 +
| Color (matches {{Minecraft Wiki|Data_values#Dyes|dye damage values}})
 
  |-
 
  |-
  | 0x10 || Left pants leg enabled
+
  | 0x10
|-
+
  | Is sheared
| 0x20 || Right pants leg enabled
 
|-
 
| 0x40 || Hat enabled
 
|-
 
| 0x80 || ''Unused''
 
|-
 
| {{Metadata id|}}
 
| Byte
 
|colspan="2"| Main hand (0 : Left, 1 : Right)
 
| 1
 
|-
 
| {{Metadata id|}}
 
| [[NBT]]
 
|colspan="2"| Left shoulder entity data (for occupying parrot)
 
| Empty
 
|-
 
| {{Metadata id|}}
 
| [[NBT]]
 
|colspan="2"| Right shoulder entity data (for occupying parrot)
 
  | Empty
 
 
  |}
 
  |}
  
=== ArmorStand ===
+
=== TameableAnimal ===
  
{{Metadata inherit|ArmorStand|inherits=Living}}
+
{{Metadata inherit|TameableAnimal|inherits=Animal}}
  
 
{| class="wikitable"
 
{| class="wikitable"
Line 2,482: Line 2,300:
 
  ! Default
 
  ! Default
 
  |-
 
  |-
  |rowspan="5"| {{Metadata id|}}
+
  |rowspan="4"| {{Metadata id|}}
  |rowspan="5"| Byte
+
  |rowspan="4"| Byte
 
  ! Bit mask
 
  ! Bit mask
 
  ! Meaning
 
  ! Meaning
  |rowspan="5"| 0
+
  |rowspan="4"| 0
 
  |-
 
  |-
 
  | 0x01
 
  | 0x01
  | is Small
+
  | Is sitting
 +
|-
 +
| 0x02
 +
| Is angry (only used with wolves)
 
  |-
 
  |-
 
  | 0x04
 
  | 0x04
  | has Arms
+
  | Is tamed
 
  |-
 
  |-
  | 0x08
+
  | {{Metadata id|}}
  | no BasePlate
+
  | OptUUID
  |-
+
|colspan="2"| Owner
  | 0x10
+
  | Absent
  | set Marker
+
  |}
 +
 
 +
=== Cat ===
 +
 
 +
{{Metadata inherit|Cat|inherits=TameableAnimal}}
 +
 
 +
{| class="wikitable"
 +
! Index
 +
  ! Type
 +
!style="width: 250px;" colspan="2"| Meaning
 +
! Default
 
  |-
 
  |-
 
  | {{Metadata id|}}
 
  | {{Metadata id|}}
  | Rotation
+
  | VarInt
  |colspan="2"| Head rotation
+
  |colspan="2"| Type (0 = tabby, 1 = black, 2 = red, 3 = siamese, 4 = british_shorthair, 5 = calico, 6 = persian, 7 = ragdoll, 8 = white, 9 = all_black)
| (0.0, 0.0, 0.0)
+
| 1
 
  |-
 
  |-
 
  | {{Metadata id|}}
 
  | {{Metadata id|}}
  | Rotation
+
  | Boolean
  |colspan="2"| Body rotation
+
  |colspan="2"| Unknown
  | (0.0, 0.0, 0.0)
+
  | false
 
  |-
 
  |-
 
  | {{Metadata id|}}
 
  | {{Metadata id|}}
  | Rotation
+
  | Boolean
  |colspan="2"| Left arm rotation
+
  |colspan="2"| Unknown
  | (-10.0, 0.0, -10.0)
+
  | false
 
  |-
 
  |-
 
  | {{Metadata id|}}
 
  | {{Metadata id|}}
  | Rotation
+
  | VarInt
  |colspan="2"| Right arm rotation
+
  |colspan="2"| Collar color (values are those {{Minecraft Wiki|Data_values#Dyes|used with dyes}})
| (-15.0, 0.0, 10.0)
+
  | 14 (Red)
|-
 
| {{Metadata id|}}
 
| Rotation
 
|colspan="2"| Left leg rotation
 
| (-1.0, 0.0, -1.0)
 
  |-
 
| {{Metadata id|}}
 
| Rotation
 
|colspan="2"| Right leg rotation
 
| (1.0, 0.0, 1.0)
 
 
  |}
 
  |}
  
Note that armor stands with the [[#Entity|invisible flag from the base entity class]] set also cannot be attacked or damaged, except for by the void.
+
=== Wolf ===
  
=== Insentient ===
+
{{Metadata inherit|Wolf|inherits=TameableAnimal}}
 
 
{{Metadata inherit|Insentient|inherits=Living}}
 
  
 
{| class="wikitable"
 
{| class="wikitable"
Line 2,543: Line 2,362:
 
  ! Default
 
  ! Default
 
  |-
 
  |-
  |rowspan="3"| {{Metadata id|}}
+
  | {{Metadata id|}}
  |rowspan="3"| Byte
+
  | Boolean
  ! Bit mask
+
|colspan="2"| Is begging
! Meaning
+
  | false
|rowspan="3"| 0
 
 
  |-
 
  |-
  | 0x01
+
  | {{Metadata id|}}
  | NoAI
+
  | VarInt
  |-
+
  |colspan="2"| Collar color (values are those {{Minecraft Wiki|Data_values#Dyes|used with dyes}})
| 0x02
+
  | 14 (Red)
  | Left handed
 
 
  |}
 
  |}
  
=== Ambient ===
+
=== Parrot ===
  
{{Metadata inherit|Ambient|inherits=Insentient}}
+
{{Metadata inherit|Parrot|inherits=TameableAnimal}}
  
No additional metadata.
+
{| class="wikitable"
 +
! Index
 +
! Type
 +
!style="width: 250px;" colspan="2"| Meaning
 +
! Default
 +
|-
 +
| {{Metadata id|}}
 +
| VarInt
 +
|colspan="2"| Variant (0: red/blue, 1: blue, 2: green, 3: yellow/blue, 4: grey)
 +
| 0
 +
|}
  
=== Bat ===
+
=== Abstract Merchant ===
  
{{Metadata inherit|Bat|inherits=Ambient}}
+
{{Metadata inherit|Abstract Merchant|inherits=Ageable}}
  
 
{| class="wikitable"
 
{| class="wikitable"
Line 2,572: Line 2,399:
 
  ! Default
 
  ! Default
 
  |-
 
  |-
  | rowspan="2"| {{Metadata id|}}
+
  | {{Metadata id|}}
  | rowspan="2"| Byte
+
  | VarInt
! Bit mask
+
  |colspan="2"| Head shake timer (starts at 40, decrements each tick)
! Meaning
+
  | 0
  | rowspan="2"| 0
 
  |-
 
| 0x01
 
| Is hanging
 
 
  |}
 
  |}
  
=== Creature ===
+
=== Villager ===
  
{{Metadata inherit|Creature|inherits=Insentient}}
+
{{Metadata inherit|Villager|inherits=Abstract Merchant}}
  
No additional metadata.
+
{| class="wikitable"
 +
! Index
 +
! Type
 +
!style="width: 250px;" colspan="2"| Meaning
 +
! Default
 +
|-
 +
| {{Metadata id|}}
 +
| Villager Data
 +
|colspan="2"| Villager Data
 +
| Plains/None/1
 +
|}
  
=== WaterMob ===
+
=== Wandering Trader ===
  
{{Metadata inherit|WaterMob|inherits=Creature}}
+
{{Metadata inherit|Wandering Trader|inherits=Abstract Merchant}}
  
 
No additional metadata.
 
No additional metadata.
  
=== Squid ===
+
=== Golem ===
  
{{Metadata inherit|Squid|inherits=WaterMob}}
+
{{Metadata inherit|Golem|inherits=Creature}}
  
 
No additional metadata.
 
No additional metadata.
  
=== Dolphin ===
+
=== IronGolem ===
  
{{Metadata inherit|Dolphin|inherits=WaterMob}}
+
{{Metadata inherit|IronGolem|inherits=Golem}}
  
 
{| class="wikitable"
 
{| class="wikitable"
Line 2,610: Line 2,443:
 
  ! Default
 
  ! Default
 
  |-
 
  |-
  | {{Metadata id|}}
+
  |rowspan="2"| {{Metadata id|}}
  | Position
+
  |rowspan="2"| Byte
  |colspan="2"| Treasure position
+
! Bit mask
| (0, 0, 0)
+
! Meaning
 +
  |rowspan="2"| 0
 
  |-
 
  |-
  | {{Metadata id|}}
+
  | 0x01
| Boolean
+
  | Is player-created
|colspan="2"| Can find treasure
 
| false
 
  |-
 
| {{Metadata id|}}
 
| Boolean
 
|colspan="2"| Has fish
 
| false
 
 
  |}
 
  |}
  
=== Abstract fish ===
+
=== Snowman ===
  
{{Metadata inherit|Abstract fish|inherits=WaterMob}}
+
{{Metadata inherit|Snowman|inherits=Golem}}
  
 
{| class="wikitable"
 
{| class="wikitable"
Line 2,636: Line 2,463:
 
  ! Default
 
  ! Default
 
  |-
 
  |-
  | {{Metadata id|}}
+
  |rowspan="3"| {{Metadata id|}}
  | Boolean
+
  |rowspan="3"| Byte
  |colspan="2"| From bucket
+
! Bit mask
  | False
+
! Meaning
 +
  |rowspan="3"| 0x10
 +
|-
 +
| 0x10
 +
| has pumpkin hat
 +
|-
 +
| 0x00
 +
  | has no pumpkin hat
 
  |}
 
  |}
  
=== Cod ===
+
=== Shulker ===
  
{{Metadata inherit|Cod|inherits=Abstract fish}}
+
{{Metadata inherit|Shulker|inherits=Golem}}
 
 
No additional metadata.
 
 
 
=== Puffer fish ===
 
 
 
{{Metadata inherit|Puffer fish|inherits=Abstract fish}}
 
  
 
{| class="wikitable"
 
{| class="wikitable"
Line 2,659: Line 2,487:
 
  |-
 
  |-
 
  | {{Metadata id|}}
 
  | {{Metadata id|}}
  | VarInt
+
  | Direction
  |colspan="2"| PuffState (varies from 0 to 2)
+
  |colspan="2"| Attach face
 +
| Down (0)
 +
|-
 +
| {{Metadata id|}}
 +
| OptPosition
 +
|colspan="2"| Attachment position
 +
| Absent
 +
|-
 +
| {{Metadata id|}}
 +
| Byte
 +
|colspan="2"| Shield height
 
  | 0
 
  | 0
 +
|-
 +
| {{Metadata id|}}
 +
| Byte
 +
| colspan="2"| Color (dye color)
 +
| 10 (purple)
 
  |}
 
  |}
  
=== Salmon ===
+
=== Monster ===
  
{{Metadata inherit|Salmon|inherits=Abstract fish}}
+
{{Metadata inherit|Monster|inherits=Creature}}
  
 
No additional metadata.
 
No additional metadata.
  
=== Tropical fish ===
+
=== Blaze ===
  
{{Metadata inherit|Tropical fish|inherits=Abstract fish}}
+
{{Metadata inherit|Blaze|inherits=Monster}}
  
 
{| class="wikitable"
 
{| class="wikitable"
Line 2,680: Line 2,523:
 
  ! Default
 
  ! Default
 
  |-
 
  |-
  | {{Metadata id|}}
+
  |rowspan="2"| {{Metadata id|}}
  | VarInt
+
  |rowspan="2"| Byte
  |colspan="2"| Variant
+
! Bit mask
  | 0
+
! Meaning
 +
  |rowspan="2"| 0
 +
  |-
 +
| 0x01
 +
| Is on fire
 
  |}
 
  |}
  
=== Ageable ===
+
=== Creeper ===
  
{{Metadata inherit|Ageable|inherits=Creature}}
+
{{Metadata inherit|Creeper|inherits=Monster}}
  
 
{| class="wikitable"
 
{| class="wikitable"
Line 2,695: Line 2,542:
 
  !style="width: 250px;" colspan="2"| Meaning
 
  !style="width: 250px;" colspan="2"| Meaning
 
  ! Default
 
  ! Default
 +
|-
 +
| {{Metadata id|}}
 +
| VarInt
 +
|colspan="2"| State (-1 = idle, 1 = fuse)
 +
| -1
 +
|-
 +
| {{Metadata id|}}
 +
| Boolean
 +
|colspan="2"| Is {{Minecraft Wiki|Creeper#Charged Creeper|charged}}
 +
| false
 
  |-
 
  |-
 
  | {{Metadata id|}}
 
  | {{Metadata id|}}
 
  | Boolean
 
  | Boolean
  |colspan="2"| Is baby
+
  |colspan="2"| Is ignited
 
  | false
 
  | false
 
  |}
 
  |}
  
=== Animal ===
+
=== Endermite ===
  
{{Metadata inherit|Animal|inherits=Ageable}}
+
{{Metadata inherit|Endermite|inherits=Monster}}
  
 
No additional metadata.
 
No additional metadata.
  
=== AbstractHorse ===
+
=== Giant Zombie ===
 +
 
 +
{{Metadata inherit|Giant Zombie|inherits=Monster}}
  
{{Metadata inherit|AbstractHorse|inherits=Animal}}
+
No additional metadata.
  
{| class="wikitable"
+
=== Guardian ===
  ! Index
+
 
 +
{{Metadata inherit|Guardian|inherits=Monster}}
 +
 
 +
{| class="wikitable"
 +
  ! Index
 
  ! Type
 
  ! Type
 
  !style="width: 250px;" colspan="2"| Meaning
 
  !style="width: 250px;" colspan="2"| Meaning
 
  ! Default
 
  ! Default
 +
|-
 +
| {{Metadata id|}}
 +
| Boolean
 +
|colspan="2"| Is retracting spikes
 +
| false
 
  |-
 
  |-
  |rowspan="9"| {{Metadata id|}}
+
  | {{Metadata id|}}
  |rowspan="9"| Byte
+
  | VarInt
! Bit mask
+
  |colspan="2"| Target EID
! Meaning
+
  | 0
  |rowspan="9"| 0
+
  |}
  |-
+
 
  | 0x01
+
=== ElderGuardian ===
| ''Unused''
+
 
|-
+
{{Metadata inherit|ElderGuardian|inherits=Guardian}}
| 0x02
+
 
| Is Tame
+
=== Silverfish ===
|-
+
 
| 0x04
+
{{Metadata inherit|Silverfish|inherits=Monster}}
| Is saddled
+
 
|-
+
No additional metadata.
| 0x08
 
| Has bred
 
|-
 
| 0x10
 
| Is eating
 
|-
 
| 0x20
 
| Is rearing (on hind legs)
 
|-
 
| 0x40
 
| Is mouth open
 
|-
 
| 0x80
 
| ''Unused''
 
|-
 
| {{Metadata id|}}
 
| OptUUID
 
|colspan="2"| Owner
 
| Absent
 
|}
 
  
=== Horse ===
+
=== Raid Participant ===
  
{{Metadata inherit|Horse|inherits=AbstractHorse}}
+
{{Metadata inherit|Raid Participant|inherits=Monster}}
  
{| class="wikitable"  
+
{| class="wikitable"
 
  ! Index
 
  ! Index
 
  ! Type
 
  ! Type
Line 2,765: Line 2,613:
 
  |-
 
  |-
 
  | {{Metadata id|}}
 
  | {{Metadata id|}}
  | VarInt
+
  | boolean
  |colspan="2"| Variant (Color & Style)
+
  | colspan="2"| Is celebrating
  | 0
+
  | false
 
  |}
 
  |}
  
=== ZombieHorse ===
+
"Is celebrating" appears to control the pose for vindicators and does not appear to be used by other types.
  
{{Metadata inherit|ZombieHorse|inherits=AbstractHorse}}
+
=== Abstract Illager ===
  
=== SkeletonHorse ===
+
{{Metadata inherit|Abstract Illager|inherits=Raid Participant}}
 +
 
 +
No additional metadata.
 +
 
 +
=== Vindicator ===
 +
 
 +
{{Metadata inherit|Vindicator|inherits=Abstract Illager}}
 +
 
 +
=== Pillager ===
  
{{Metadata inherit|SkeletonHorse|inherits=AbstractHorse}}
+
{{Metadata inherit|Pillager|inherits=Abstract Illager}}
  
=== ChestedHorse ===
+
=== Spellcaster Illager ===
  
{{Metadata inherit|ChestedHorse|inherits=AbstractHorse}}
+
{{Metadata inherit|Spellcaster Illager|inherits=Abstract Illager}}
  
{| class="wikitable"  
+
{| class="wikitable"
 
  ! Index
 
  ! Index
 
  ! Type
 
  ! Type
Line 2,789: Line 2,645:
 
  |-
 
  |-
 
  | {{Metadata id|}}
 
  | {{Metadata id|}}
  | Boolean
+
  | Byte
  |colspan="2"| Has Chest
+
  | colspan="2"| Spell (0: none, 1: summon vex, 2: attack, 3: wololo, 4: disappear, 5: blindness)
  | false
+
  | 0
 
  |}
 
  |}
  
=== Donkey ===
+
=== Evoker ===
  
{{Metadata inherit|Donkey|inherits=ChestedHorse}}
+
{{Metadata inherit|Evoker|inherits=Spellcaster Illager}}
  
=== Llama ===
+
=== Illusioner ===
  
{{Metadata inherit|Llama|inherits=ChestedHorse}}
+
{{Metadata inherit|Illusioner|inherits=Spellcaster Illager}}
  
{| class="wikitable"
+
=== Ravager ===
! Index
 
! Type
 
!style="width: 250px;" colspan="2"| Meaning
 
! Default
 
|-
 
| {{Metadata id|}}
 
| VarInt
 
| colspan="2"| Strength (number of columns of 3 slots in the llama's inventory once a chest is equipped)
 
| 0
 
|-
 
| {{Metadata id|}}
 
| VarInt
 
| colspan="2"| Carpet color (a dye color, or -1 if no carpet equipped)
 
| -1
 
|-
 
| {{Metadata id|}}
 
| VarInt
 
| colspan="2"| Variant (0: <code>llama_creamy.png</code>, 1: <code>llama_white.png</code>, 2: <code>llama_brown.png</code>, 3: <code>llama_gray.png</code>)
 
| 0
 
|}
 
  
=== Trader Llama ===
+
{{Metadata inherit|Ravager|inherits=Raid Participant}}
 
 
{{Metadata inherit|Trader Llama|Llama}}
 
  
 
No additional metadata.
 
No additional metadata.
  
=== Mule ===
+
=== Witch ===
  
{{Metadata inherit|Mule|inherits=ChestedHorse}}
+
{{Metadata inherit|Witch|inherits=Raid Participant}}
 
 
=== Fox ===
 
 
 
{{Metadata inherit|Fox|inherits=Animal}}
 
  
 
{| class="wikitable"
 
{| class="wikitable"
Line 2,845: Line 2,675:
 
  |-
 
  |-
 
  | {{Metadata id|}}
 
  | {{Metadata id|}}
  | VarInt
+
  | Boolean
  | colspan="2" | Type (0: red, 1: snow)
+
  |colspan="2"| Is drinking potion
  | 0 (red)
+
| false
  |-
+
|}
  | rowspan="9" | {{Metadata id|}}
+
 
  | rowspan="9" | Byte
+
=== EvocationFangs ===
 +
 
 +
{{Metadata inherit|EvocationFangs|inherits=Entity}}
 +
 
 +
No additional metadata.
 +
 
 +
=== Vex ===
 +
 
 +
{{Metadata inherit|Vex|inherits=Monster}}
 +
 
 +
{| class="wikitable"
 +
! Index
 +
! Type
 +
!style="width: 250px;" colspan="2"| Meaning
 +
  ! Default
 +
  |-
 +
  |rowspan="2"| {{Metadata id|}}
 +
  |rowspan="2"| Byte
 
  ! Bit mask
 
  ! Bit mask
 
  ! Meaning
 
  ! Meaning
  | rowspan="9" | 0
+
  |rowspan="2"| 0
 
  |-
 
  |-
  | 0x01 || Sitting
+
  | 0x01
  |-
+
  | Is in attack mode
  | 0x02 || ''Unused''
+
  |}
|-
+
 
| 0x04 || Crouching
+
=== AbstractSkeleton ===
|-
+
 
| 0x08 || Unknown
+
{{Metadata inherit|AbstractSkeleton|inherits=Monster}}
|-
+
 
| 0x10 || Unknown
+
No additional metadata.
|-
+
 
| 0x20 || Sleeping
+
=== Skeleton ===
|-
+
 
| 0x40 || Unknown
+
{{Metadata inherit|Skeleton|inherits=AbstractSkeleton}}
|-
+
 
| 0x80 || Unknown
+
=== Wither Skeleton ===
|-
+
 
| {{Metadata id|}}
+
{{Metadata inherit|Wither Skeleton|inherits=AbstractSkeleton}}
| OptUUID
+
 
| colspan="2" | First UUID (in <code>UUIDs</code> NBT)?
+
=== Stray ===
| Absent
+
 
|-
+
{{Metadata inherit|Stray|inherits=AbstractSkeleton}}
| {{Metadata id|}}
 
| OptUUID
 
| colspan="2" | Second UUID (in <code>UUIDs</code> NBT)?
 
| Absent
 
|}
 
  
=== Ocelot ===
+
=== Spider ===
  
{{Metadata inherit|Ocelot|inherits=Animal}}
+
{{Metadata inherit|Spider|inherits=Monster}}
  
 
{| class="wikitable"
 
{| class="wikitable"
Line 2,892: Line 2,734:
 
  ! Default
 
  ! Default
 
  |-
 
  |-
  | {{Metadata id|}}
+
  |rowspan="2"| {{Metadata id|}}
  | Boolean
+
  |rowspan="2"| Byte
  |colspan="2"| Is trusting
+
! Bit mask
  | false
+
! Meaning
 +
  |rowspan="2"| 0
 +
|-
 +
| 0x01
 +
  | Is climbing
 
  |}
 
  |}
  
=== Panda ===
+
=== Wither ===
  
{{Metadata inherit|Panda|inherits=Animal}}
+
{{Metadata inherit|Wither|inherits=Monster}}
  
 
{| class="wikitable"
 
{| class="wikitable"
Line 2,909: Line 2,755:
 
  |-
 
  |-
 
  | {{Metadata id|}}
 
  | {{Metadata id|}}
  | Integer
+
  | VarInt
  |colspan="2"| Breed timer?  Set to 32 when something happens, and then counts down to 0 again.  At 29 and 14 (before counting down), will play the <code>entity.panda.cant_breed</code> sound event.
+
  |colspan="2"| Center head's target (entity ID, or 0 if no target)
 
  | 0
 
  | 0
 
  |-
 
  |-
 
  | {{Metadata id|}}
 
  | {{Metadata id|}}
  | Integer
+
  | VarInt
  |colspan="2"| Sneeze timer.  Counts up from 0; when it hits 1 the <code>entity.panda.pre_sneeze</code> event plays and when it hits 21 the <code>entity.panda.sneeze</code> event plays (and it is set back to 0 and the sneeze flag is cleared).
+
  |colspan="2"| Left head's target (entity ID, or 0 if no target)
 
  | 0
 
  | 0
 
  |-
 
  |-
 
  | {{Metadata id|}}
 
  | {{Metadata id|}}
  | Integer
+
  | VarInt
  |colspan="2"| Eat timer.  If nonzero, counts upwards.
+
  |colspan="2"| Right head's target (entity ID, or 0 if no target)
 
  | 0
 
  | 0
 
  |-
 
  |-
 
  | {{Metadata id|}}
 
  | {{Metadata id|}}
  | Byte
+
  | VarInt
  |colspan="2"| Main Gene
+
  |colspan="2"| Invulnerable time
 
  | 0
 
  | 0
|-
+
  |}
| {{Metadata id|}}
+
 
| Byte
+
=== Zombie ===
|colspan="2"| Hidden Gene
+
 
| 0
+
{{Metadata inherit|Zombie|inherits=Monster}}
|-
 
|rowspan="6"| {{Metadata id|}}
 
|rowspan="6"| Byte
 
! Bit mask
 
! Meaning
 
|rowspan="6"| 0
 
|-
 
| 0x01
 
| Unused
 
|-
 
| 0x02
 
| Is sneezing
 
|-
 
| 0x04
 
| Is eating
 
|-
 
| 0x08
 
| Unknown
 
|-
 
| 0x10
 
| Unknown
 
  |}
 
 
 
=== Pig ===
 
 
 
{{Metadata inherit|Pig|inherits=Animal}}
 
  
 
{| class="wikitable"
 
{| class="wikitable"
Line 2,967: Line 2,787:
 
  | {{Metadata id|}}
 
  | {{Metadata id|}}
 
  | Boolean
 
  | Boolean
  |colspan="2"| Has saddle
+
  |colspan="2"| Is baby
 
  | false
 
  | false
 
  |-
 
  |-
 
  | {{Metadata id|}}
 
  | {{Metadata id|}}
 
  | VarInt
 
  | VarInt
  |colspan="2"| Total time to "boost" with a carrot on a stick for
+
  |colspan="2"| Unused (previously type)
 
  | 0
 
  | 0
 +
|-
 +
| {{Metadata id|}}
 +
| Boolean
 +
|colspan="2"| Is becoming a drowned
 +
| false
 
  |}
 
  |}
  
Whenever a carrot on a stick is used, if the pig is not currently boosting it will start to boost for 140 to 980 (inclusive) ticks.  When boost time is changed, a counter is reset which counts up to the boost time, after which boosting will stop.  The value remains set at its modified value even after boosting is stopped.
+
=== Zombie Villager ===
  
=== Rabbit ===
+
{{Metadata inherit|Zombie Villager|inherits=Zombie}}
  
{{Metadata inherit|Rabbit|inherits=Animal}}
+
{| class="wikitable"
 
 
{| class="wikitable"
 
 
  ! Index
 
  ! Index
 
  ! Type
 
  ! Type
Line 2,989: Line 2,812:
 
  |-
 
  |-
 
  | {{Metadata id|}}
 
  | {{Metadata id|}}
  | VarInt
+
  | Boolean
  |colspan="2"| Type
+
  |colspan="2"| Is converting
  | 0
+
  | false
 +
|-
 +
| {{Metadata id|}}
 +
| Villager Data
 +
|colspan="2"| Villager Data
 +
| Plains/None/1
 
  |}
 
  |}
  
=== Turtle ===
+
=== Husk ===
 +
 
 +
{{Metadata inherit|Husk|inherits=Zombie}}
 +
 
 +
No additional metadata.
 +
 
 +
=== Drowned ===
 +
 
 +
{{Metadata inherit|Drowned|inherits=Zombie}}
 +
 
 +
No additional metadata.
 +
 
 +
=== Zombified Piglin ===
 +
 
 +
{{Metadata inherit|Zombified Piglin|inherits=Zombie}}
 +
 
 +
No additional metadata.
 +
 
 +
=== Enderman ===
  
{{Metadata inherit|Turtle|inherits=Animal}}
+
{{Metadata inherit|Enderman|inherits=Monster}}
  
 
{| class="wikitable"
 
{| class="wikitable"
Line 3,005: Line 2,851:
 
  |-
 
  |-
 
  | {{Metadata id|}}
 
  | {{Metadata id|}}
  | BlockPos
+
  | Opt BlockID
  |colspan="2"| Home pos
+
  |colspan="2"| Carried block
  | (0, 0, 0)
+
  | Absent
 
  |-
 
  |-
 
  | {{Metadata id|}}
 
  | {{Metadata id|}}
 
  | Boolean
 
  | Boolean
  |colspan="2"| Has egg
+
  |colspan="2"| Is screaming
| false
 
|-
 
| {{Metadata id|}}
 
| Boolean
 
|colspan="2"| Laying egg
 
| false
 
|-
 
| {{Metadata id|}}
 
| BlockPos
 
|colspan="2"| Travel pos
 
| (0, 0, 0)
 
|-
 
| {{Metadata id|}}
 
| Boolean
 
|colspan="2"| Going home
 
 
  | false
 
  | false
 
  |-
 
  |-
 
  | {{Metadata id|}}
 
  | {{Metadata id|}}
 
  | Boolean
 
  | Boolean
  |colspan="2"| Traveling
+
  |colspan="2"| Is stared at
 
  | false
 
  | false
 
  |}
 
  |}
  
=== Polar Bear ===
+
=== EnderDragon ===
  
{{Metadata inherit|Polar Bear|inherits=Animal}}
+
{{Metadata inherit|EnderDragon|inherits=Insentient}}
  
 
{| class="wikitable"
 
{| class="wikitable"
Line 3,046: Line 2,877:
 
  |-
 
  |-
 
  | {{Metadata id|}}
 
  | {{Metadata id|}}
  | Boolean
+
  | VarInt
  |colspan="2"| Standing up
+
  |colspan="2"| Dragon phase
  | false
+
  | 10 (hover)
 
  |}
 
  |}
  
=== Chicken ===
+
Phases (according to {{Minecraft Wiki|Ender Dragon#Data_values|the wiki page on dragon data values}}) are:
  
{{Metadata inherit|Chicken|inherits=Animal}}
+
* 0: circling
 
+
* 1: strafing (preparing to shoot a fireball)
No additional metadata.
+
* 2: flying to the portal to land (part of transition to landed state)
 +
* 3: landing on the portal (part of transition to landed state)
 +
* 4: taking off from the portal (part of transition out of landed state)
 +
* 5: landed, performing breath attack
 +
* 6: landed, looking for a player for breath attack
 +
* 7: landed, roar before beginning breath attack
 +
* 8: charging player
 +
* 9: flying to portal to die
 +
* 10: hovering with no AI (default when using the /summon command).
  
=== Cow ===
+
=== Flying ===
  
{{Metadata inherit|Cow|inherits=Animal}}
+
{{Metadata inherit|Flying|inherits=Insentient}}
  
 
No additional metadata.
 
No additional metadata.
  
=== Mooshroom ===
+
=== Ghast ===
  
{{Metadata inherit|Mooshroom|inherits=Cow}}
+
{{Metadata inherit|Ghast|inherits=Flying}}
  
 
{| class="wikitable"
 
{| class="wikitable"
Line 3,074: Line 2,913:
 
  |-
 
  |-
 
  | {{Metadata id|}}
 
  | {{Metadata id|}}
  | String
+
  | Boolean
  | colspan="2"| Variant ("red" or "brown")
+
  |colspan="2"| Is attacking
  | red
+
  | false
 
  |}
 
  |}
  
=== Sheep ===
+
=== Phantom ===
  
{{Metadata inherit|Sheep|inherits=Animal}}
+
{{Metadata inherit|Phantom|inherits=Flying}}
  
 
{| class="wikitable"
 
{| class="wikitable"
Line 3,089: Line 2,928:
 
  ! Default
 
  ! Default
 
  |-
 
  |-
  |rowspan="3"| {{Metadata id|}}
+
  | {{Metadata id|}}
  |rowspan="3"| Byte
+
  | VarInt
! Bit mask
+
  |colspan="2"| Size
! Meaning
+
  | 0
  |rowspan="3"| 0
+
  |}
  |-
+
 
| 0x0F
+
Hitbox size is determined by horizontal=0.9 + 0.2*size and vertical=0.5 + 0.1 * i
  | Color (matches {{Minecraft Wiki|Data_values#Dyes|dye damage values}})
 
|-
 
| 0x10
 
| Is sheared
 
|}
 
  
=== TameableAnimal ===
+
=== Slime ===
  
{{Metadata inherit|TameableAnimal|inherits=Animal}}
+
{{Metadata inherit|Slime|inherits=Insentient}}
  
 
{| class="wikitable"
 
{| class="wikitable"
Line 3,111: Line 2,945:
 
  !style="width: 250px;" colspan="2"| Meaning
 
  !style="width: 250px;" colspan="2"| Meaning
 
  ! Default
 
  ! Default
|-
 
|rowspan="4"| {{Metadata id|}}
 
|rowspan="4"| Byte
 
! Bit mask
 
! Meaning
 
|rowspan="4"| 0
 
|-
 
| 0x01
 
| Is sitting
 
|-
 
| 0x02
 
| Is angry (only used with wolves)
 
|-
 
| 0x04
 
| Is tamed
 
 
  |-
 
  |-
 
  | {{Metadata id|}}
 
  | {{Metadata id|}}
  | OptUUID
+
  | VarInt
  |colspan="2"| Owner
+
  |colspan="2"| Size
  | Absent
+
  | 1
 
  |}
 
  |}
  
=== Cat ===
+
=== LlamaSpit ===
  
{{Metadata inherit|Cat|inherits=TameableAnimal}}
+
{{Metadata inherit|LlamaSpit|inherits=Entity}}
  
{| class="wikitable"}
+
=== Minecart ===
  ! Index
+
 
 +
{{Metadata inherit|Minecart|inherits=Entity}}
 +
 
 +
{| class="wikitable"
 +
  ! Index
 
  ! Type
 
  ! Type
 
  !style="width: 250px;" colspan="2"| Meaning
 
  !style="width: 250px;" colspan="2"| Meaning
Line 3,145: Line 2,968:
 
  | {{Metadata id|}}
 
  | {{Metadata id|}}
 
  | VarInt
 
  | VarInt
  |colspan="2"| Type (0 = tabby, 1 = black, 2 = red, 3 = siamese, 4 = british_shorthair, 5 = calico, 6 = persian, 7 = ragdoll, 8 = white, 9 = all_black)
+
  |colspan="2"| Shaking power
 +
| 0
 +
|-
 +
| {{Metadata id|}}
 +
| VarInt
 +
|colspan="2"| Shaking direction
 
  | 1
 
  | 1
 
  |-
 
  |-
 
  | {{Metadata id|}}
 
  | {{Metadata id|}}
  | Boolean
+
  | Float
  |colspan="2"| Unknown
+
  |colspan="2"| Shaking multiplier
  | false
+
  | 0.0
 
  |-
 
  |-
 
  | {{Metadata id|}}
 
  | {{Metadata id|}}
  | Boolean
+
  | VarInt
  |colspan="2"| Unknown
+
  |colspan="2"| Custom block ID and damage
  | false
+
  | 0
 
  |-
 
  |-
 
  | {{Metadata id|}}
 
  | {{Metadata id|}}
 
  | VarInt
 
  | VarInt
  |colspan="2"| Collar color (values are those {{Minecraft Wiki|Data_values#Dyes|used with dyes}})
+
  |colspan="2"| Custom block Y position (in 16ths of a block)
  | 14 (Red)
+
| 6
 +
|-
 +
| {{Metadata id|}}
 +
  | Boolean
 +
|colspan="2"| Show custom block
 +
| false
 
  |}
 
  |}
  
=== Wolf ===
+
If show custom block is false, then each type of Minecart will render its own type of block with its own properties.  Note that one does ''not'' need to send these values for the metadata fields, as the client will automatically select them if show custom block is false.  They are only provided for reference to help with swapping out other blocks.
  
{{Metadata inherit|Wolf|inherits=TameableAnimal}}
+
* Rideable Minecarts contain air (0:0) and have a y position of 6
 +
* Chest Minecarts contain chests facing north (54:0) and have a y position of 8
 +
* Furnace Minecarts contain a normal furnace facing north when unpowered (61:0) and a lit furnace facing north when powered (62:0) and have a y position of 6 in both cases
 +
* Hopper Minecarts contain a hopper (154:0) and have a y position of 1
 +
* TNT Minecarts contain TNT (46:0) and have a y position of 6
 +
* Command block minecarts contain a Command Block (137:0) and have a y position of 6
 +
* Spawner Minecarts contain a spawner (52:0) and have a y position of 6
 +
 
 +
=== MinecartRideable ===
 +
 
 +
{{Metadata inherit|MinecartRideable|inherits=Minecart}}
 +
 
 +
No additional metadata.
 +
 
 +
=== MinecartContainer ===
 +
 
 +
{{Metadata inherit|MinecartContainer|inherits=Minecart}}
 +
 
 +
No additional metadata.
 +
 
 +
=== MinecartHopper ===
 +
 
 +
{{Metadata inherit|MinecartHopper|inherits=MinecartContainer}}
 +
 
 +
No additional metadata.
 +
 
 +
=== MinecartChest ===
 +
 
 +
{{Metadata inherit|MinecartChest|inherits=MinecartContainer}}
 +
 
 +
No additional metadata.
 +
 
 +
=== MinecartFurnace ===
 +
 
 +
{{Metadata inherit|MinecartFurnace|inherits=Minecart}}
  
 
{| class="wikitable"
 
{| class="wikitable"
Line 3,173: Line 3,040:
 
  !style="width: 250px;" colspan="2"| Meaning
 
  !style="width: 250px;" colspan="2"| Meaning
 
  ! Default
 
  ! Default
|-
 
| {{Metadata id|}}
 
| Float
 
|colspan="2"| Damage taken (used for tail rotation)
 
| Value of health field (1.0)
 
 
  |-
 
  |-
 
  | {{Metadata id|}}
 
  | {{Metadata id|}}
 
  | Boolean
 
  | Boolean
  |colspan="2"| Is begging
+
  |colspan="2"| Has fuel
 
  | false
 
  | false
|-
 
| {{Metadata id|}}
 
| VarInt
 
|colspan="2"| Collar color (values are those {{Minecraft Wiki|Data_values#Dyes|used with dyes}})
 
| 14 (Red)
 
 
  |}
 
  |}
  
=== Parrot ===
+
=== MinecartTNT ===
 +
 
 +
{{Metadata inherit|MinecartTNT|inherits=Minecart}}
 +
 
 +
No additional metadata.
 +
 
 +
=== MinecartSpawner ===
 +
 
 +
{{Metadata inherit|MinecartSpawner|inherits=Minecart}}
 +
 
 +
No additional metadata.
 +
 
 +
=== MinecartCommandBlock ===
  
{{Metadata inherit|Parrot|inherits=TameableAnimal}}
+
{{Metadata inherit|MinecartCommandBlock|inherits=Minecart}}
  
 
{| class="wikitable"
 
{| class="wikitable"
Line 3,201: Line 3,070:
 
  |-
 
  |-
 
  | {{Metadata id|}}
 
  | {{Metadata id|}}
  | VarInt
+
  | String
  |colspan="2"| Variant (0: red/blue, 1: blue, 2: green, 3: yellow/blue, 4: grey)
+
  |colspan="2"| Command
  | 0
+
| <code></code>
 +
|-
 +
| {{Metadata id|}}
 +
| [[Chat]]
 +
|colspan="2"| Last output
 +
  | <code>{"text":""}</code>
 
  |}
 
  |}
  
=== Abstract Merchant ===
+
=== TNTPrimed ===
  
{{Metadata inherit|Abstract Merchant|inherits=Ageable}}
+
{{Metadata inherit|TNTPrimed|inherits=Entity}}
  
 
{| class="wikitable"
 
{| class="wikitable"
Line 3,218: Line 3,092:
 
  | {{Metadata id|}}
 
  | {{Metadata id|}}
 
  | VarInt
 
  | VarInt
  |colspan="2"| Head shake timer (starts at 40, decrements each tick)
+
  |colspan="2"| Fuse time
  | 0
+
  | 80
 
  |}
 
  |}
  
=== Villager ===
+
[[Category:Minecraft Modern]]
 +
 
 +
=== Piglin ===
  
{{Metadata inherit|Villager|inherits=Abstract Merchant}}
+
{{Metadata inherit|Piglin|inherits=Monster}}
  
 
{| class="wikitable"
 
{| class="wikitable"
Line 3,230: Line 3,106:
 
  ! Type
 
  ! Type
 
  !style="width: 250px;" colspan="2"| Meaning
 
  !style="width: 250px;" colspan="2"| Meaning
  ! Default
+
  ! Deafult
 +
|-
 +
| {{Metadata id|}}
 +
| Boolean
 +
|colspan="2"| ???
 +
| false
 +
|-
 +
| {{Metadata id|}}
 +
| Boolean
 +
|colspan="2"| ???
 +
| false
 +
|-
 +
| {{Metadata id|}}
 +
| Boolean
 +
|colspan="2"| ???
 +
| false
 +
|-
 +
| {{Metadata id|}}
 +
| Boolean
 +
|colspan="2"| ???
 +
| false
 
  |-
 
  |-
 
  | {{Metadata id|}}
 
  | {{Metadata id|}}
  | Villager Data
+
  | Boolean
  |colspan="2"| Villager Data
+
  |colspan="2"| ???
  | Plains/None/1
+
  | false
 
  |}
 
  |}
  
=== Wandering Trader ===
+
=== Piglin Brute ===
  
{{Metadata inherit|Wandering Trader|inherits=Abstract Merchant}}
+
{{Metadata inherit|Piglin Brute|inherits=Monster}}
  
 
No additional metadata.
 
No additional metadata.
 
=== Golem ===
 
 
{{Metadata inherit|Golem|inherits=Creature}}
 
 
No additional metadata.
 
 
=== IronGolem ===
 
 
{{Metadata inherit|IronGolem|inherits=Golem}}
 
 
{| class="wikitable"
 
! Index
 
! Type
 
!style="width: 250px;" colspan="2"| Meaning
 
! Default
 
|-
 
|rowspan="2"| {{Metadata id|}}
 
|rowspan="2"| Byte
 
! Bit mask
 
! Meaning
 
|rowspan="2"| 0
 
|-
 
| 0x01
 
| Is player-created
 
|}
 
 
=== Snowman ===
 
 
{{Metadata inherit|Snowman|inherits=Golem}}
 
 
{| class="wikitable"
 
! Index
 
! Type
 
!style="width: 250px;" colspan="2"| Meaning
 
! Default
 
|-
 
|rowspan="3"| {{Metadata id|}}
 
|rowspan="3"| Byte
 
! Bit mask
 
! Meaning
 
|rowspan="3"| 0x10
 
|-
 
| 0x10
 
| has pumpkin hat
 
|-
 
| 0x00
 
| has no pumpkin hat
 
|}
 
 
=== Shulker ===
 
 
{{Metadata inherit|Shulker|inherits=Golem}}
 
 
{| class="wikitable"
 
! Index
 
! Type
 
!style="width: 250px;" colspan="2"| Meaning
 
! Default
 
|-
 
| {{Metadata id|}}
 
| Direction
 
|colspan="2"| Attach face
 
| Down (0)
 
|-
 
| {{Metadata id|}}
 
| OptPosition
 
|colspan="2"| Attachment position
 
| Absent
 
|-
 
| {{Metadata id|}}
 
| Byte
 
|colspan="2"| Shield height
 
| 0
 
|-
 
| {{Metadata id|}}
 
| Byte
 
| colspan="2"| Color (dye color)
 
| 10 (purple)
 
|}
 
 
=== Monster ===
 
 
{{Metadata inherit|Monster|inherits=Creature}}
 
 
No additional metadata.
 
 
=== Blaze ===
 
 
{{Metadata inherit|Blaze|inherits=Monster}}
 
 
{| class="wikitable"
 
! Index
 
! Type
 
!style="width: 250px;" colspan="2"| Meaning
 
! Default
 
|-
 
|rowspan="2"| {{Metadata id|}}
 
|rowspan="2"| Byte
 
! Bit mask
 
! Meaning
 
|rowspan="2"| 0
 
|-
 
| 0x01
 
| Is on fire
 
|}
 
 
=== Creeper ===
 
 
{{Metadata inherit|Creeper|inherits=Monster}}
 
 
{| class="wikitable"
 
! Index
 
! Type
 
!style="width: 250px;" colspan="2"| Meaning
 
! Default
 
|-
 
| {{Metadata id|}}
 
| VarInt
 
|colspan="2"| State (-1 = idle, 1 = fuse)
 
| -1
 
|-
 
| {{Metadata id|}}
 
| Boolean
 
|colspan="2"| Is {{Minecraft Wiki|Creeper#Charged Creeper|charged}}
 
| false
 
|-
 
| {{Metadata id|}}
 
| Boolean
 
|colspan="2"| Is ignited
 
| false
 
|}
 
 
=== Endermite ===
 
 
{{Metadata inherit|Endermite|inherits=Monster}}
 
 
No additional metadata.
 
 
=== Giant Zombie ===
 
 
{{Metadata inherit|Giant Zombie|inherits=Monster}}
 
 
No additional metadata.
 
 
=== Guardian ===
 
 
{{Metadata inherit|Guardian|inherits=Monster}}
 
 
{| class="wikitable"
 
! Index
 
! Type
 
!style="width: 250px;" colspan="2"| Meaning
 
! Default
 
|-
 
| {{Metadata id|}}
 
| Boolean
 
|colspan="2"| Is retracting spikes
 
| false
 
|-
 
| {{Metadata id|}}
 
| VarInt
 
|colspan="2"| Target EID
 
| 0
 
|}
 
 
=== ElderGuardian ===
 
 
{{Metadata inherit|ElderGuardian|inherits=Guardian}}
 
 
=== Silverfish ===
 
 
{{Metadata inherit|Silverfish|inherits=Monster}}
 
 
No additional metadata.
 
 
=== Raid Participant ===
 
 
{{Metadata inherit|Raid Participant|inherits=Monster}}
 
 
{| class="wikitable"
 
! Index
 
! Type
 
!style="width: 250px;" colspan="2"| Meaning
 
! Default
 
|-
 
| {{Metadata id|}}
 
| boolean
 
| colspan="2"| Is celebrating
 
| false
 
|}
 
 
"Is celebrating" appears to control the pose for vindicators and does not appear to be used by other types.
 
 
=== Abstract Illager ===
 
 
{{Metadata inherit|Abstract Illager|inherits=Raid Participant}}
 
 
No additional metadata.
 
 
=== Vindicator ===
 
 
{{Metadata inherit|Vindicator|inherits=Abstract Illager}}
 
 
=== Pillager ===
 
 
{{Metadata inherit|Pillager|inherits=Abstract Illager}}
 
 
=== Spellcaster Illager ===
 
 
{{Metadata inherit|Spellcaster Illager|inherits=Abstract Illager}}
 
 
{| class="wikitable"
 
! Index
 
! Type
 
!style="width: 250px;" colspan="2"| Meaning
 
! Default
 
|-
 
| {{Metadata id|}}
 
| Byte
 
| colspan="2"| Spell (0: none, 1: summon vex, 2: attack, 3: wololo, 4: disappear, 5: blindness)
 
| 0
 
|}
 
 
=== Evoker ===
 
 
{{Metadata inherit|Evoker|inherits=Spellcaster Illager}}
 
 
=== Illusioner ===
 
 
{{Metadata inherit|Illusioner|inherits=Spellcaster Illager}}
 
 
=== Ravager ===
 
 
{{Metadata inherit|Ravager|inherits=Raid Participant}}
 
 
No additional metadata.
 
 
=== Witch ===
 
 
{{Metadata inherit|Witch|inherits=Raid Participant}}
 
 
{| class="wikitable"
 
! Index
 
! Type
 
!style="width: 250px;" colspan="2"| Meaning
 
! Default
 
|-
 
| {{Metadata id|}}
 
| Boolean
 
|colspan="2"| Is drinking potion
 
| false
 
|}
 
 
=== EvocationFangs ===
 
 
{{Metadata inherit|EvocationFangs|inherits=Entity}}
 
 
No additional metadata.
 
 
=== Vex ===
 
 
{{Metadata inherit|Vex|inherits=Monster}}
 
 
{| class="wikitable"
 
! Index
 
! Type
 
!style="width: 250px;" colspan="2"| Meaning
 
! Default
 
|-
 
|rowspan="2"| {{Metadata id|}}
 
|rowspan="2"| Byte
 
! Bit mask
 
! Meaning
 
|rowspan="2"| 0
 
|-
 
| 0x01
 
| Is in attack mode
 
|}
 
 
=== AbstractSkeleton ===
 
 
{{Metadata inherit|AbstractSkeleton|inherits=Monster}}
 
 
No additional metadata.
 
 
=== Skeleton ===
 
 
{{Metadata inherit|Skeleton|inherits=AbstractSkeleton}}
 
 
=== Wither Skeleton ===
 
 
{{Metadata inherit|Wither Skeleton|inherits=AbstractSkeleton}}
 
 
=== Stray ===
 
 
{{Metadata inherit|Stray|inherits=AbstractSkeleton}}
 
 
=== Spider ===
 
 
{{Metadata inherit|Spider|inherits=Monster}}
 
 
{| class="wikitable"
 
! Index
 
! Type
 
!style="width: 250px;" colspan="2"| Meaning
 
! Default
 
|-
 
|rowspan="2"| {{Metadata id|}}
 
|rowspan="2"| Byte
 
! Bit mask
 
! Meaning
 
|rowspan="2"| 0
 
|-
 
| 0x01
 
| Is climbing
 
|}
 
 
=== Wither ===
 
 
{{Metadata inherit|Wither|inherits=Monster}}
 
 
{| class="wikitable"
 
! Index
 
! Type
 
!style="width: 250px;" colspan="2"| Meaning
 
! Default
 
|-
 
| {{Metadata id|}}
 
| VarInt
 
|colspan="2"| Center head's target (entity ID, or 0 if no target)
 
| 0
 
|-
 
| {{Metadata id|}}
 
| VarInt
 
|colspan="2"| Left head's target (entity ID, or 0 if no target)
 
| 0
 
|-
 
| {{Metadata id|}}
 
| VarInt
 
|colspan="2"| Right head's target (entity ID, or 0 if no target)
 
| 0
 
|-
 
| {{Metadata id|}}
 
| VarInt
 
|colspan="2"| Invulnerable time
 
| 0
 
|}
 
 
=== Zombie ===
 
 
{{Metadata inherit|Zombie|inherits=Monster}}
 
 
{| class="wikitable"
 
! Index
 
! Type
 
!style="width: 250px;" colspan="2"| Meaning
 
! Default
 
|-
 
| {{Metadata id|}}
 
| Boolean
 
|colspan="2"| Is baby
 
| false
 
|-
 
| {{Metadata id|}}
 
| VarInt
 
|colspan="2"| Unused (previously type)
 
| 0
 
|-
 
| {{Metadata id|}}
 
| Boolean
 
|colspan="2"| Is becoming a drowned
 
| false
 
|}
 
 
=== Zombie Villager ===
 
 
{{Metadata inherit|Zombie Villager|inherits=Zombie}}
 
 
{| class="wikitable"
 
! Index
 
! Type
 
!style="width: 250px;" colspan="2"| Meaning
 
! Default
 
|-
 
| {{Metadata id|}}
 
| Boolean
 
|colspan="2"| Is converting
 
| false
 
|-
 
| {{Metadata id|}}
 
| Villager Data
 
|colspan="2"| Villager Data
 
| Plains/None/1
 
|}
 
 
=== Husk ===
 
 
{{Metadata inherit|Husk|inherits=Zombie}}
 
 
No additional metadata.
 
 
=== Drowned ===
 
 
{{Metadata inherit|Drowned|inherits=Zombie}}
 
 
No additional metadata.
 
 
=== Enderman ===
 
 
{{Metadata inherit|Enderman|inherits=Monster}}
 
 
{| class="wikitable"
 
! Index
 
! Type
 
!style="width: 250px;" colspan="2"| Meaning
 
! Default
 
|-
 
| {{Metadata id|}}
 
| Opt BlockID
 
|colspan="2"| Carried block
 
| Absent
 
|-
 
| {{Metadata id|}}
 
| Boolean
 
|colspan="2"| Is screaming
 
| false
 
|}
 
 
=== EnderDragon ===
 
 
{{Metadata inherit|EnderDragon|inherits=Insentient}}
 
 
{| class="wikitable"
 
! Index
 
! Type
 
!style="width: 250px;" colspan="2"| Meaning
 
! Default
 
|-
 
| {{Metadata id|}}
 
| VarInt
 
|colspan="2"| Dragon phase
 
| 10 (hover)
 
|}
 
 
Phases (according to {{Minecraft Wiki|Ender Dragon#Data_values|the wiki page on dragon data values}}) are:
 
 
* 0: circling
 
* 1: strafing (preparing to shoot a fireball)
 
* 2: flying to the portal to land (part of transition to landed state)
 
* 3: landing on the portal (part of transition to landed state)
 
* 4: taking off from the portal (part of transition out of landed state)
 
* 5: landed, performing breath attack
 
* 6: landed, looking for a player for breath attack
 
* 7: landed, roar before beginning breath attack
 
* 8: charging player
 
* 9: flying to portal to die
 
* 10: hovering with no AI (default when using the /summon command).
 
 
=== Flying ===
 
 
{{Metadata inherit|Flying|inherits=Insentient}}
 
 
No additional metadata.
 
 
=== Ghast ===
 
 
{{Metadata inherit|Ghast|inherits=Flying}}
 
 
{| class="wikitable"
 
! Index
 
! Type
 
!style="width: 250px;" colspan="2"| Meaning
 
! Default
 
|-
 
| {{Metadata id|}}
 
| Boolean
 
|colspan="2"| Is attacking
 
| false
 
|}
 
 
=== Phantom ===
 
 
{{Metadata inherit|Phantom|inherits=Flying}}
 
 
{| class="wikitable"
 
! Index
 
! Type
 
!style="width: 250px;" colspan="2"| Meaning
 
! Default
 
|-
 
| {{Metadata id|}}
 
| VarInt
 
|colspan="2"| Size
 
| 0
 
|}
 
 
Hitbox size is determined by horizontal=0.9 + 0.2*size and vertical=0.5 + 0.1 * i
 
 
=== Slime ===
 
 
{{Metadata inherit|Slime|inherits=Insentient}}
 
 
{| class="wikitable"
 
! Index
 
! Type
 
!style="width: 250px;" colspan="2"| Meaning
 
! Default
 
|-
 
| {{Metadata id|}}
 
| VarInt
 
|colspan="2"| Size
 
| 1
 
|}
 
 
=== LlamaSpit ===
 
 
{{Metadata inherit|LlamaSpit|inherits=Entity}}
 
 
=== Minecart ===
 
 
{{Metadata inherit|Minecart|inherits=Entity}}
 
 
{| class="wikitable"
 
! Index
 
! Type
 
!style="width: 250px;" colspan="2"| Meaning
 
! Default
 
|-
 
| {{Metadata id|}}
 
| VarInt
 
|colspan="2"| Shaking power
 
| 0
 
|-
 
| {{Metadata id|}}
 
| VarInt
 
|colspan="2"| Shaking direction
 
| 1
 
|-
 
| {{Metadata id|}}
 
| Float
 
|colspan="2"| Shaking multiplier
 
| 0.0
 
|-
 
| {{Metadata id|}}
 
| VarInt
 
|colspan="2"| Custom block ID and damage
 
| 0
 
|-
 
| {{Metadata id|}}
 
| VarInt
 
|colspan="2"| Custom block Y position (in 16ths of a block)
 
| 6
 
|-
 
| {{Metadata id|}}
 
| Boolean
 
|colspan="2"| Show custom block
 
| false
 
|}
 
 
If show custom block is false, then each type of Minecart will render its own type of block with its own properties.  Note that one does ''not'' need to send these values for the metadata fields, as the client will automatically select them if show custom block is false.  They are only provided for reference to help with swapping out other blocks.
 
 
* Rideable Minecarts contain air (0:0) and have a y position of 6
 
* Chest Minecarts contain chests facing north (54:0) and have a y position of 8
 
* Furnace Minecarts contain a normal furnace facing north when unpowered (61:0) and a lit furnace facing north when powered (62:0) and have a y position of 6 in both cases
 
* Hopper Minecarts contain a hopper (154:0) and have a y position of 1
 
* TNT Minecarts contain TNT (46:0) and have a y position of 6
 
* Command block minecarts contain a Command Block (137:0) and have a y position of 6
 
* Spawner Minecarts contain a spawner (52:0) and have a y position of 6
 
 
=== MinecartRideable ===
 
 
{{Metadata inherit|MinecartRideable|inherits=Minecart}}
 
 
No additional metadata.
 
 
=== MinecartContainer ===
 
 
{{Metadata inherit|MinecartContainer|inherits=Minecart}}
 
 
No additional metadata.
 
 
=== MinecartHopper ===
 
 
{{Metadata inherit|MinecartHopper|inherits=MinecartContainer}}
 
 
No additional metadata.
 
 
=== MinecartChest ===
 
 
{{Metadata inherit|MinecartChest|inherits=MinecartContainer}}
 
 
No additional metadata.
 
 
=== MinecartFurnace ===
 
 
{{Metadata inherit|MinecartFurnace|inherits=Minecart}}
 
 
{| class="wikitable"
 
! Index
 
! Type
 
!style="width: 250px;" colspan="2"| Meaning
 
! Default
 
|-
 
| {{Metadata id|}}
 
| Boolean
 
|colspan="2"| Has fuel
 
| false
 
|}
 
 
=== MinecartTNT ===
 
 
{{Metadata inherit|MinecartTNT|inherits=Minecart}}
 
 
No additional metadata.
 
 
=== MinecartSpawner ===
 
 
{{Metadata inherit|MinecartSpawner|inherits=Minecart}}
 
 
No additional metadata.
 
 
=== MinecartCommandBlock ===
 
 
{{Metadata inherit|MinecartCommandBlock|inherits=Minecart}}
 
 
{| class="wikitable"
 
! Index
 
! Type
 
!style="width: 250px;" colspan="2"| Meaning
 
! Default
 
|-
 
| {{Metadata id|}}
 
| String
 
|colspan="2"| Command
 
| <code></code>
 
|-
 
| {{Metadata id|}}
 
| [[Chat]]
 
|colspan="2"| Last output
 
| <code>{"text":""}</code>
 
|}
 
 
=== TNTPrimed ===
 
 
{{Metadata inherit|TNTPrimed|inherits=Entity}}
 
 
{| class="wikitable"
 
! Index
 
! Type
 
!style="width: 250px;" colspan="2"| Meaning
 
! Default
 
|-
 
| {{Metadata id|}}
 
| VarInt
 
|colspan="2"| Fuse time
 
| 80
 
|}
 
 
[[Category:Minecraft Modern]]
 

Revision as of 12:52, 2 July 2020

Various Entities have different metadata fields and status codes.

Contents

Mobs

Mobs are spawned via Spawn Mob.

Warning.png Some entities (marked in yellow) should only be spawned using Spawn Object and their Object ID. While they also have an entity ID, this ID is only used internally. Servers should not attempt to spawn these entities using Spawn Mob with that entity ID, although clients should accept such packets if they appear.

Additionally, a few other entities (marked in blue) must be spawned in their own special ways:

Warning.png These entity IDs are up to date. Use Data Generators or Burger to get older IDs. If using Burger just replace the version number to what you want to see.

Type Name bounding box x and z bounding box y ID
0 Area Effect Cloud 2.0 * Radius 0.5 minecraft:area_effect_cloud
1 Armor Stand normal: 0.5 marker: 0.0 small: 0.25 normal: 1.975 marker: 0.0 small: 0.9875 minecraft:armor_stand
2 Arrow 0.5 0.5 minecraft:arrow
3 Bat 0.5 0.9 minecraft:bat
4 Bee 0.7 0.6 minecraft:bee
5 Blaze 0.6 1.8 minecraft:blaze
6 Boat 1.375 0.5625 minecraft:boat
7 Cat 0.6 0.7 minecraft:cat
8 Cave Spider 0.7 0.5 minecraft:cave_spider
9 Chicken 0.4 0.7 minecraft:chicken
10 Cod 0.5 0.3 minecraft:cod
11 Cow 0.9 1.4 minecraft:cow
12 Creeper 0.6 1.7 minecraft:creeper
13 Dolphin 0.9 0.6 minecraft:dolphin
14 Donkey 1.5 1.39648 minecraft:donkey
15 Dragon Fireball 1.0 1.0 minecraft:dragon_fireball
16 Drowned 0.6 1.95 minecraft:drowned
17 Elder Guardian 1.9975 (2.35 * guardian) 1.9975 (2.35 * guardian) minecraft:elder_guardian
18 End Crystal 2.0 2.0 minecraft:end_crystal
19 Ender Dragon 16.0 8.0 minecraft:ender_dragon
20 Enderman 0.6 2.9 minecraft:enderman
21 Endermite 0.4 0.3 minecraft:endermite
22 Evoker 0.6 1.95 minecraft:evoker
23 Evoker Fangs 0.5 0.8 minecraft:evoker_fangs
24 Experience Orb 0.5 0.5 minecraft:experience_orb
24 Eye of Ender 0.25 0.25 minecraft:eye_of_ender
26 Falling Block 0.98 0.98 minecraft:falling_block
27 Firework Rocket 0.25 0.25 minecraft:firework_rocket
28 Fox 0.6 0.7 minecraft:fox
29 Ghast 4.0 4.0 minecraft:ghast
30 Giant 3.6 12.0 minecraft:giant
31 Guardian 0.85 0.85 minecraft:guardian
32 Hoglin 1.39648 1.4 minecraft:hoglin
33 Horse 1.39648 1.6 minecraft:horse
34 Husk 0.6 1.95 minecraft:husk
35 Illusioner 0.6 1.95 minecraft:illusioner
36 Iron Golem 1.4 2.7 minecraft:iron_golem
37 Item 0.25 0.25 minecraft:item
38 ItemFrame 0.75 or 0.0625 (depth) 0.75 minecraft:item_frame
39 Fireball 1.0 1.0 minecraft:fireball
40 Leash Knot 0.375 0.5 minecraft:leash_knot
41 Lightning Bolt 0.0 0.0 minecraft:lightning_bolt
42 Llama 0.9 1.87 minecraft:llama
43 Llama Spit 0.25 0.25 minecraft:llama_spit
44 Magma Cube 0.51000005 * size 0.51000005 * size minecraft:magma_cube
45 Minecart 0.98 0.7 minecraft:minecart
46 Minecart with Chest 0.98 0.7 minecraft:chest_minecart
47 Minecart with Command Block 0.98 0.7 minecraft:commandblock_minecart
48 Minecart with Furnace 0.98 0.7 minecraft:furnace_minecart
49 Minecart with Hopper 0.98 0.7 minecraft:hopper_minecart
50 MinecartSpawner 0.98 0.7 minecraft:spawner_minecart
51 MinecartTNT 0.98 0.7 minecraft:tnt_minecart
52 Mule 1.39648 1.6 minecraft:mule
53 Mushroom 0.9 1.4 minecraft:mooshroom
54 Ocelot 0.6 0.7 minecraft:ocelot
55 Painting type width or 0.0625 (depth) type height minecraft:painting
56 Panda 1.3 1.25 minecraft:panda
57 Parrot 0.5 0.9 minecraft:parrot
58 Phantom 0.9 0.5 minecraft:phantom
59 Pig 0.9 0.9 minecraft:pig
60 Piglin 0.6 1.95 minecraft:piglin
61 Piglin Brute 0.6 1.95 minecraft:piglin_brute
62 Pillager 0.6 1.95 minecraft:pillager
63 Polar Bear 1.4 1.4 minecraft:polar_bear
64 Primed TNT 0.98 0.98 minecraft:tnt
65 Pufferfish 0.7 0.7 minecraft:pufferfish
66 Rabbit 0.4 0.5 minecraft:rabbit
67 Ravager 1.95 2.2 minecraft:ravager
68 Salmon 0.7 0.4 minecraft:salmon
69 Sheep 0.9 1.3 minecraft:sheep
70 Shulker 1.0 1.0-2.0 (depending on peek) minecraft:shulker
71 Shulker Bullet 0.3125 0.3125 minecraft:shulker_bullet
72 Silverfish 0.4 0.3 minecraft:silverfish
73 Skeleton 0.6 1.99 minecraft:skeleton
74 Skeleton Horse 1.39648 1.6 minecraft:skeleton_horse
75 Slime 0.51000005 * size 0.51000005 * size minecraft:slime
76 Small Fireball (blaze) 0.3125 0.3125 minecraft:small_fireball
77 Snow Golem 0.7 1.9 minecraft:snow_golem
78 Snowball 0.25 0.25 minecraft:snowball
79 SpectralArrow 0.5 0.5 minecraft:spectral_arrow
80 Spider 1.4 0.9 minecraft:spider
81 Squid 0.8 0.8 minecraft:squid
82 Stray 0.6 1.99 minecraft:stray
83 Strider 0.9 1.7 minecraft:strider
84 Thrown Egg 0.25 0.25 minecraft:egg
85 Thrown Ender Pearl 0.25 0.25 minecraft:ender_pearl
86 Thrown Bottle o' Enchanting 0.25 0.25 minecraft:experience_bottle
87 Potion 0.25 0.25 minecraft:potion
88 Trident 0.5 0.5 minecraft:trident
89 Trader LLama 0.9 1.87 minecraft:trader_llama
90 Tropical Fish 0.5 0.4 minecraft:tropical_fish
91 Turtle 1.2 0.4 minecraft:turtle
92 Vex 0.4 0.8 minecraft:vex
93 Villager 0.6 1.95 minecraft:villager
94 Vindicator 0.6 1.95 minecraft:vindicator
95 Wandering Trader 0.6 1.95 minecraft:wandering_trader
96 Witch 0.6 1.95 minecraft:witch
97 Wither 0.9 3.5 minecraft:wither
98 Wither Skeleton 0.7 2.4 minecraft:wither_skeleton
99 Wither Skull 0.3125 0.3125 minecraft:wither_skull
100 Wolf 0.6 0.85 minecraft:wolf
101 Zoglin 1.39648 1.4 minecraft:zoglin
102 Zombie 0.6 1.95 minecraft:zombie
103 Zombie Horse 1.39648 1.6 minecraft:zombie_horse
104 Zombie Villager 0.6 1.95 minecraft:zombie_villager
105 Zombified Piglin 0.6 1.95 minecraft:zombified_piglin
106 Player 0.6 1.8 minecraft:player
107 Fishing Bobber 0.25 0.25 minecraft:fishing_bobber

Objects

Objects are spawned via Spawn Object. See Object Data for more details.

Object IDs and Entity IDs are different. Most objects also have an entity ID, but should only ever be spawned via Spawn Object.

ID Name bounding box x and z bounding box y
1 Boat 1.375 0.5625
2 Item Stack (Slot) 0.25 0.25
3 Area Effect Cloud 2.0 * Radius 0.5
10 Minecart 0.98 0.7
50 Primed TNT 0.98 0.98
51 End Crystal 2.0 2.0
60 Tipped arrow (projectile; also used for regular arrows) 0.5 0.5
61 Snowball (projectile) 0.25 0.25
62 Egg (projectile) 0.25 0.25
63 Fireball (Ghast projectile) 1.0 1.0
64 Small Fireball (Blaze projectile) 0.3125 0.3125
65 Thrown Ender Pearl 0.25 0.25
66 Wither Skull (Wither projectile) 0.3125 0.3125
67 Shulker Bullet 0.3125 0.3125
68 Llama spit 0.25 0.25
70 Falling Block 0.98 0.98
71 Item Frame 0.75 or 0.0625 0.75
72 Eye of Ender 0.25 0.25
73 Thrown Potion 0.25 0.25
75 Thrown Exp Bottle 0.25 0.25
76 Firework Rocket 0.25 0.25
77 Leash Knot 0.375 0.5
78 ArmorStand normal: 0.5 marker: 0.0 small: 0.25 normal: 1.975 marker: 0.0 small: 0.9875
79 Evoker Fangs Fangs 0.5 0.8
90 Fishing Hook 0.25 0.25
91 Spectral Arrow 0.5 0.5
93 Dragon Fireball 1.0 1.0
94 Trident 0.5 0.5

Since release 1.6, all minecarts are spawned with object type 10 and their functionality is then specified in the Data field within the packet. Also, their visual appearance may be sent via the Entity Metadata packet.

Entity Metadata Format

Note that entity metadata is a totally distinct concept from block metadata. It is not required to send all metadata fields, or even any metadata fields, so long as the terminating entry is correctly sent.

Entity Metadata is an array of entries, each of which looks like the following:

Name Type Meaning
Index Unsigned Byte Unique index key determining the meaning of the following value, see the table below. If this is 0xff then the it is the end of the Entity Metadata array and no more is read.
Type Optional VarInt Enum Only if Index is not 0xff; the type of the index, see the table below
Value Optional value of Type Only if Index is not 0xff: the value of the metadata field
Value of Type field Type of Value field Notes
0 Byte
1 VarInt
2 Float
3 String
4 Chat
5 OptChat (Boolean + Optional Chat) Chat is present if the Boolean is set to true
6 Slot
7 Boolean
8 Rotation 3 floats: rotation on x, rotation on y, rotation on z
9 Position
10 OptPosition (Boolean + Optional Position) Position is present if the Boolean is set to true
11 Direction (VarInt) (Down = 0, Up = 1, North = 2, South = 3, West = 4, East = 5)
12 OptUUID (Boolean + Optional UUID) UUID is present if the Boolean is set to true
13 OptBlockID (VarInt) 0 for absent (implies air); otherwise, a block state ID as per the global palette
14 NBT
15 Particle
16 Villager Data 3 VarInts: villager type, villager profession, level
17 OptVarInt 0 for absent; 1 + actual value otherwise. Used for entity IDs.
18 Pose A VarInt enum: 0: STANDING, 1: FALL_FLYING, 2: SLEEPING, 3: SWIMMING, 4: SPIN_ATTACK, 5: SNEAKING, 6: DYING

Villager type (minecraft:villager_type registry):

Name ID
minecraft:desert 0
minecraft:jungle 1
minecraft:plains 2
minecraft:savanna 3
minecraft:snow 4
minecraft:swamp 5
minecraft:taiga 6

Villager professions (minecraft:villager_profession registry):

Name ID
minecraft:none 0
minecraft:armorer 1
minecraft:butcher 2
minecraft:cartographer 3
minecraft:cleric 4
minecraft:farmer 5
minecraft:fisherman 6
minecraft:fletcher 7
minecraft:leatherworker 8
minecraft:librarian 9
minecraft:mason 10
minecraft:nitwit 11
minecraft:shepherd 12
minecraft:toolsmith 13
minecraft:weaponsmith 14

Entity classes also recursively inherit fields from classes they extend.

Entity

The base class.

Index Type Meaning Default
0 Byte Bit mask Meaning 0
0x01 On Fire
0x02 Crouched
0x04 Unused (previously riding)
0x08 Sprinting
0x10 Swimming
0x20 Invisible
0x40 Glowing effect
0x80 Flying with elytra
1 VarInt Air 300
2 OptChat Custom name empty
3 Boolean Is custom name visible false
4 Boolean Is silent false
5 Boolean No gravity false
6 Pose Pose STANDING

Thrown Egg

Extends Entity.

Index Type Meaning Default
7 Slot Item Empty (which behaves as if it were a minecraft:egg)

Thrown Ender Pearl

Extends Entity.

Index Type Meaning Default
7 Slot Item Empty (which behaves as if it were a minecraft:ender_pearl)

Thrown Bottle o' Enchanting

Extends Entity.

Index Type Meaning Default
7 Slot Item Empty (which behaves as if it were a minecraft:experience_bottle)

Snowball

Extends Entity.

Index Type Meaning Default
7 Slot Item Empty (which behaves as if it were a minecraft:snowball)

Potion

Extends Entity.

Index Type Meaning Default
7 Slot Potion which is thrown Empty

Eye of Ender

Extends Entity.

Index Type Meaning Default
7 Slot Item Empty (which behaves as if it were a minecraft:ender_eye)

Falling Block

Extends Entity.

Index Type Meaning Default
7 BlockPos spawn position (0, 0, 0)

Area Effect Cloud

Extends Entity.

Index Type Meaning Default
7 Float Radius 0.5
8 VarInt Color (only for mob spell particle) 0
9 Boolean Ignore radius and show effect as single point, not area false
10 Particle The #Particle effect

FishingHook

Extends Entity.

Index Type Meaning Default
7 VarInt Hooked entity id + 1, or 0 if there is no hooked entity 0
8 Boolean ??? false

Arrow

Extends Entity.

Used for both tipped and regular arrows. If not tipped, then color is set to -1 and no tipped arrow particles are used.

Index Type Meaning Default
7 Byte Bit mask Meaning 0
0x01 Is critical
0x02 Is noclip (used by loyalty tridents when returning)
8 Byte Piercing level 0
9 VarInt Color (-1 for no particles) -1

Spectral Arrow

Extends Entity.

Index Type Meaning Default
7 Byte Bit mask Meaning 0
0x01 Is critical
0x02 Is noclip (used by loyalty tridents when returning)
8 Byte Piercing level 0

Trident

Extends Entity.

Index Type Meaning Default
7 Byte Bit mask Meaning 0
0x01 Is critical
0x02 Is noclip (used by loyalty tridents when returning)
8 Byte Piercing level 0
9 Byte Loyalty level (enchantment) 0
10 Boolean Has enchantment glint False

Boat

Extends Entity.

Index Type Meaning Default
7 VarInt Time since last hit 0
8 VarInt Forward direction 1
9 Float Damage taken 0.0
10 VarInt Type (0=oak, 1=spruce, 2=birch, 3=jungle, 4=acacia, 5=dark oak) 0
11 Boolean Left paddle turning false
12 Boolean Right paddle turning false
13 VarInt Splash timer 0

End Crystal

Extends Entity.

Index Type Meaning Default
7 OptBlockPos Beam target Empty
8 Boolean Show bottom true

Dragon Fireball

Extends Entity.

No additional metadata.

Small Fireball

Extends Entity.

This is the fireball shot by blazes and dispensers with fire charges.

Index Type Meaning Default
7 Slot Item Empty (which behaves as if it were a minecraft:fire_charge)

Fireball

Extends Entity.

This is the large fireball shot by ghasts.

Index Type Meaning Default
7 Slot Item Empty

WitherSkull

Extends Entity.

Index Type Meaning Default
7 Boolean Invulnerable false

Firework Rocket

Extends Entity.

Index Type Meaning Default
7 Slot Firework info Empty
8 OptVarInt Entity ID of entity which used firework (for elytra boosting) Empty
9 Boolean Shot at angle (from a crossbow) false

ItemFrame

Extends Entity.

Index Type Meaning Default
7 Slot Item Empty
8 VarInt Rotation 0

Item

Extends Entity.

Index Type Meaning Default
7 Slot Item Empty

Abstract Living

Extends Entity.

Index Type Meaning Default
7 Byte Hand states, used to trigger blocking/eating/drinking animation. 0
Bit mask Meaning
0x01 Is hand active
0x02 Active hand (0 = main hand, 1 = offhand)
0x04 In riptide spin attack
8 Float Health 1.0
9 VarInt Potion effect color (or 0 if there is no effect) 0
10 Boolean Is potion effect ambient: reduces the number of particles generated by potions to 1/5 the normal amount false
11 VarInt Number of arrows in entity 0
12 VarInt Health added by absorption (based on the AbsorptionAmount tag) 0
13 OptBlockPos Unknown (Bed location?) Empty

Player

Extends Living.

Index Type Meaning Default
14 Float Additional Hearts 0.0
15 VarInt Score 0
16 Byte The Displayed Skin Parts bit mask that is sent in Client Settings 0
Bit mask Meaning
0x01 Cape enabled
0x02 Jacket enabled
0x04 Left sleeve enabled
0x08 Right sleeve enabled
0x10 Left pants leg enabled
0x20 Right pants leg enabled
0x40 Hat enabled
0x80 Unused
17 Byte Main hand (0 : Left, 1 : Right) 1
18 NBT Left shoulder entity data (for occupying parrot) Empty
19 NBT Right shoulder entity data (for occupying parrot) Empty

ArmorStand

Extends Living.

Index Type Meaning Default
14 Byte Bit mask Meaning 0
0x01 is Small
0x04 has Arms
0x08 no BasePlate
0x10 set Marker
15 Rotations Head rotation (0.0, 0.0, 0.0)
16 Rotations Body rotation (0.0, 0.0, 0.0)
17 Rotations Left arm rotation (-10.0, 0.0, -10.0)
18 Rotations Right arm rotation (-15.0, 0.0, 10.0)
19 Rotations Left leg rotation (-1.0, 0.0, -1.0)
20 Rotations Right leg rotation (1.0, 0.0, 1.0)

Note that armor stands with the invisible flag from the base entity class set also cannot be attacked or damaged, except for by the void.

Insentient

Extends Living.

Index Type Meaning Default
14 Byte Bit mask Meaning 0
0x01 NoAI
0x02 Left handed

Ambient

Extends Insentient.

No additional metadata.

Bat

Extends Ambient.

Index Type Meaning Default
15 Byte Bit mask Meaning 0
0x01 Is hanging

Creature

Extends Insentient.

No additional metadata.

WaterMob

Extends Creature.

No additional metadata.

Squid

Extends WaterMob.

No additional metadata.

Dolphin

Extends WaterMob.

Index Type Meaning Default
15 Position Treasure position (0, 0, 0)
16 Boolean Can find treasure false
17 Boolean Has fish false

Abstract fish

Extends WaterMob.

Index Type Meaning Default
15 Boolean From bucket False

Cod

Extends Abstract fish.

No additional metadata.

Puffer fish

Extends Abstract fish.

Index Type Meaning Default
16 VarInt PuffState (varies from 0 to 2) 0

Salmon

Extends Abstract fish.

No additional metadata.

Tropical fish

Extends Abstract fish.

Index Type Meaning Default
16 VarInt Variant 0

Ageable

Extends Creature.

Index Type Meaning Default
15 Boolean Is baby false

Animal

Extends Ageable.

No additional metadata.

AbstractHorse

Extends Animal.

Index Type Meaning Default
16 Byte Bit mask Meaning 0
0x01 Unused
0x02 Is Tame
0x04 Is saddled
0x08 Has bred
0x10 Is eating
0x20 Is rearing (on hind legs)
0x40 Is mouth open
0x80 Unused
17 OptUUID Owner Absent

Horse

Extends AbstractHorse.

Index Type Meaning Default
18 VarInt Variant (Color & Style) 0

ZombieHorse

Extends AbstractHorse.

SkeletonHorse

Extends AbstractHorse.

ChestedHorse

Extends AbstractHorse.

Index Type Meaning Default
18 Boolean Has Chest false

Donkey

Extends ChestedHorse.

Llama

Extends ChestedHorse.

Index Type Meaning Default
19 VarInt Strength (number of columns of 3 slots in the llama's inventory once a chest is equipped) 0
20 VarInt Carpet color (a dye color, or -1 if no carpet equipped) -1
21 VarInt Variant (0: llama_creamy.png, 1: llama_white.png, 2: llama_brown.png, 3: llama_gray.png) 0

Trader Llama

The base class.

No additional metadata.

Mule

Extends ChestedHorse.

Bee

Extends Animal.

Index Type Meaning Default
16 Byte Flags 0
0x01 Unused
0x02 Is angry
0x04 Has stung
0x08 Has nectar
17 VarInt Anger time in ticks 0 (Not angry)

Fox

Extends Animal.

Index Type Meaning Default
16 VarInt Type (0: red, 1: snow) 0 (red)
17 Byte Bit mask Meaning 0
0x01 Sitting
0x02 Unused
0x04 Crouching
0x08 Unknown
0x10 Unknown
0x20 Sleeping
0x40 Unknown
0x80 Unknown
18 OptUUID First UUID (in UUIDs NBT)? Absent
19 OptUUID Second UUID (in UUIDs NBT)? Absent

Ocelot

Extends Animal.

Index Type Meaning Default
16 Boolean Is trusting false

Panda

Extends Animal.

Index Type Meaning Default
16 Integer Breed timer? Set to 32 when something happens, and then counts down to 0 again. At 29 and 14 (before counting down), will play the entity.panda.cant_breed sound event. 0
17 Integer Sneeze timer. Counts up from 0; when it hits 1 the entity.panda.pre_sneeze event plays and when it hits 21 the entity.panda.sneeze event plays (and it is set back to 0 and the sneeze flag is cleared). 0
18 Integer Eat timer. If nonzero, counts upwards. 0
19 Byte Main Gene 0
20 Byte Hidden Gene 0
21 Byte Bit mask Meaning 0
0x01 Unused
0x02 Is sneezing
0x04 Is rolling
0x08 Is sitting
0x10 Is on back

Pig

Extends Animal.

Index Type Meaning Default
16 Boolean Has saddle false
17 VarInt Total time to "boost" with a carrot on a stick for 0

Whenever a carrot on a stick is used, if the pig is not currently boosting it will start to boost for 140 to 980 (inclusive) ticks. When boost time is changed, a counter is reset which counts up to the boost time, after which boosting will stop. The value remains set at its modified value even after boosting is stopped.

Rabbit

Extends Animal.

Index Type Meaning Default
16 VarInt Type 0

Turtle

Extends Animal.

Index Type Meaning Default
16 BlockPos Home pos (0, 0, 0)
17 Boolean Has egg false
18 Boolean Laying egg false
19 BlockPos Travel pos (0, 0, 0)
20 Boolean Going home false
21 Boolean Traveling false

Polar Bear

Extends Animal.

Index Type Meaning Default
16 Boolean Standing up false

Chicken

Extends Animal.

No additional metadata.

Cow

Extends Animal.

No additional metadata.

Mooshroom

Extends Cow.

Index Type Meaning Default
16 String Variant ("red" or "brown") red

Sheep

Extends Animal.

Index Type Meaning Default
16 Byte Bit mask Meaning 0
0x0F Color (matches dye damage values)
0x10 Is sheared

TameableAnimal

Extends Animal.

Index Type Meaning Default
16 Byte Bit mask Meaning 0
0x01 Is sitting
0x02 Is angry (only used with wolves)
0x04 Is tamed
17 OptUUID Owner Absent

Cat

Extends TameableAnimal.

Index Type Meaning Default
18 VarInt Type (0 = tabby, 1 = black, 2 = red, 3 = siamese, 4 = british_shorthair, 5 = calico, 6 = persian, 7 = ragdoll, 8 = white, 9 = all_black) 1
19 Boolean Unknown false
20 Boolean Unknown false
21 VarInt Collar color (values are those used with dyes) 14 (Red)

Wolf

Extends TameableAnimal.

Index Type Meaning Default
18 Boolean Is begging false
19 VarInt Collar color (values are those used with dyes) 14 (Red)

Parrot

Extends TameableAnimal.

Index Type Meaning Default
18 VarInt Variant (0: red/blue, 1: blue, 2: green, 3: yellow/blue, 4: grey) 0

Abstract Merchant

Extends Ageable.

Index Type Meaning Default
16 VarInt Head shake timer (starts at 40, decrements each tick) 0

Villager

Extends Abstract Merchant.

Index Type Meaning Default
17 Villager Data Villager Data Plains/None/1

Wandering Trader

Extends Abstract Merchant.

No additional metadata.

Golem

Extends Creature.

No additional metadata.

IronGolem

Extends Golem.

Index Type Meaning Default
15 Byte Bit mask Meaning 0
0x01 Is player-created

Snowman

Extends Golem.

Index Type Meaning Default
15 Byte Bit mask Meaning 0x10
0x10 has pumpkin hat
0x00 has no pumpkin hat

Shulker

Extends Golem.

Index Type Meaning Default
15 Direction Attach face Down (0)
16 OptPosition Attachment position Absent
17 Byte Shield height 0
18 Byte Color (dye color) 10 (purple)

Monster

Extends Creature.

No additional metadata.

Blaze

Extends Monster.

Index Type Meaning Default
15 Byte Bit mask Meaning 0
0x01 Is on fire

Creeper

Extends Monster.

Index Type Meaning Default
15 VarInt State (-1 = idle, 1 = fuse) -1
16 Boolean Is charged false
17 Boolean Is ignited false

Endermite

Extends Monster.

No additional metadata.

Giant Zombie

Extends Monster.

No additional metadata.

Guardian

Extends Monster.

Index Type Meaning Default
15 Boolean Is retracting spikes false
16 VarInt Target EID 0

ElderGuardian

Extends Guardian.

Silverfish

Extends Monster.

No additional metadata.

Raid Participant

Extends Monster.

Index Type Meaning Default
15 boolean Is celebrating false

"Is celebrating" appears to control the pose for vindicators and does not appear to be used by other types.

Abstract Illager

Extends Raid Participant.

No additional metadata.

Vindicator

Extends Abstract Illager.

Pillager

Extends Abstract Illager.

Spellcaster Illager

Extends Abstract Illager.

Index Type Meaning Default
16 Byte Spell (0: none, 1: summon vex, 2: attack, 3: wololo, 4: disappear, 5: blindness) 0

Evoker

Extends Spellcaster Illager.

Illusioner

Extends Spellcaster Illager.

Ravager

Extends Raid Participant.

No additional metadata.

Witch

Extends Raid Participant.

Index Type Meaning Default
16 Boolean Is drinking potion false

EvocationFangs

Extends Entity.

No additional metadata.

Vex

Extends Monster.

Index Type Meaning Default
15 Byte Bit mask Meaning 0
0x01 Is in attack mode

AbstractSkeleton

Extends Monster.

No additional metadata.

Skeleton

Extends AbstractSkeleton.

Wither Skeleton

Extends AbstractSkeleton.

Stray

Extends AbstractSkeleton.

Spider

Extends Monster.

Index Type Meaning Default
15 Byte Bit mask Meaning 0
0x01 Is climbing

Wither

Extends Monster.

Index Type Meaning Default
15 VarInt Center head's target (entity ID, or 0 if no target) 0
16 VarInt Left head's target (entity ID, or 0 if no target) 0
17 VarInt Right head's target (entity ID, or 0 if no target) 0
18 VarInt Invulnerable time 0

Zombie

Extends Monster.

Index Type Meaning Default
15 Boolean Is baby false
16 VarInt Unused (previously type) 0
17 Boolean Is becoming a drowned false

Zombie Villager

Extends Zombie.

Index Type Meaning Default
18 Boolean Is converting false
19 Villager Data Villager Data Plains/None/1

Husk

Extends Zombie.

No additional metadata.

Drowned

Extends Zombie.

No additional metadata.

Zombified Piglin

Extends Zombie.

No additional metadata.

Enderman

Extends Monster.

Index Type Meaning Default
15 Opt BlockID Carried block Absent
16 Boolean Is screaming false
17 Boolean Is stared at false

EnderDragon

Extends Insentient.

Index Type Meaning Default
15 VarInt Dragon phase 10 (hover)

Phases (according to the wiki page on dragon data values) are:

  • 0: circling
  • 1: strafing (preparing to shoot a fireball)
  • 2: flying to the portal to land (part of transition to landed state)
  • 3: landing on the portal (part of transition to landed state)
  • 4: taking off from the portal (part of transition out of landed state)
  • 5: landed, performing breath attack
  • 6: landed, looking for a player for breath attack
  • 7: landed, roar before beginning breath attack
  • 8: charging player
  • 9: flying to portal to die
  • 10: hovering with no AI (default when using the /summon command).

Flying

Extends Insentient.

No additional metadata.

Ghast

Extends Flying.

Index Type Meaning Default
15 Boolean Is attacking false

Phantom

Extends Flying.

Index Type Meaning Default
15 VarInt Size 0

Hitbox size is determined by horizontal=0.9 + 0.2*size and vertical=0.5 + 0.1 * i

Slime

Extends Insentient.

Index Type Meaning Default
15 VarInt Size 1

LlamaSpit

Extends Entity.

Minecart

Extends Entity.

Index Type Meaning Default
7 VarInt Shaking power 0
8 VarInt Shaking direction 1
9 Float Shaking multiplier 0.0
10 VarInt Custom block ID and damage 0
11 VarInt Custom block Y position (in 16ths of a block) 6
12 Boolean Show custom block false

If show custom block is false, then each type of Minecart will render its own type of block with its own properties. Note that one does not need to send these values for the metadata fields, as the client will automatically select them if show custom block is false. They are only provided for reference to help with swapping out other blocks.

  • Rideable Minecarts contain air (0:0) and have a y position of 6
  • Chest Minecarts contain chests facing north (54:0) and have a y position of 8
  • Furnace Minecarts contain a normal furnace facing north when unpowered (61:0) and a lit furnace facing north when powered (62:0) and have a y position of 6 in both cases
  • Hopper Minecarts contain a hopper (154:0) and have a y position of 1
  • TNT Minecarts contain TNT (46:0) and have a y position of 6
  • Command block minecarts contain a Command Block (137:0) and have a y position of 6
  • Spawner Minecarts contain a spawner (52:0) and have a y position of 6

MinecartRideable

Extends Minecart.

No additional metadata.

MinecartContainer

Extends Minecart.

No additional metadata.

MinecartHopper

Extends MinecartContainer.

No additional metadata.

MinecartChest

Extends MinecartContainer.

No additional metadata.

MinecartFurnace

Extends Minecart.

Index Type Meaning Default
13 Boolean Has fuel false

MinecartTNT

Extends Minecart.

No additional metadata.

MinecartSpawner

Extends Minecart.

No additional metadata.

MinecartCommandBlock

Extends Minecart.

Index Type Meaning Default
13 String Command
14 Chat Last output {"text":""}

TNTPrimed

Extends Entity.

Index Type Meaning Default
7 VarInt Fuse time 80

Piglin

Extends Monster.

Index Type Meaning Deafult
15 Boolean ??? false
16 Boolean ??? false
17 Boolean ??? false
18 Boolean ??? false
19 Boolean ??? false

Piglin Brute

Extends Monster.

No additional metadata.