minecraft entity list (java edition 1.10)

Minecraft Entity List (Java Edition 1.10)

In Minecraft Java Edition (PC/Mac) 1.10, each entity has a unique entity value assigned to it. These entity values are used in /summon and /entitydata commands.

Traditionally an entity is a mob which is a living creature that moves around in the game. This is true in most cases. However, there are a handful of entities that are items with data tags you can change in the game such as an armor stand or a painting.

Here is an interactive list of all entities in Minecraft Java Edition (PC/Mac) 1.10.

(Enter a value in the field above to find entities in the table below)

Entity Description
(Minecraft Entity Value)
area effect cloud Area effect cloud
(minecraft:AreaEffectCloud)
armor stand Armor stand
(minecraft:ArmorStand)
arrow Arrow
(minecraft:Arrow)
bat Bat
(minecraft:Bat)
blaze Blaze
(minecraft:Blaze)
boat Boat
(minecraft:Boat)
cave spider Cave spider
(minecraft:CaveSpider)
chicken Chicken
(minecraft:Chicken)
cow Cow
(minecraft:Cow)
creeper Creeper
(minecraft:Creeper)
ender dragon Dragon fireball
(minecraft:DragonFireball)
end crystal End crystal
(minecraft:EnderCrystal)
ender dragon Ender dragon
(minecraft:EnderDragon)
enderman Enderman
(minecraft:Enderman)
endermite Endermite
(minecraft:Endermite)
horse Horse, donkey, mule, skeleton horse or zombie horse
(minecraft:EntityHorse)
eye of ender Eye of ender
(minecraft:EyeOfEnderSignal)
falling sand Falling sand
(minecraft:FallingSand)
fireball Fireball
(minecraft:Fireball)
firework rocket Firework rocket
(minecraft:FireworksRocketEntity)
ghast Ghast
(minecraft:Ghast)
giant Giant zombie
(minecraft:Giant)
guardian Guardian or elder guardian
(minecraft:Guardian)
item Item
(minecraft:Item)
item frame Item frame
(minecraft:ItemFrame)
magma cube Magma cube
(minecraft:LavaSlime)
lead Lead
(minecraft:LeashKnot)
lightning bolt Lightning bolt
(minecraft:LightningBolt)
minecart with chest Minecart with chest
(minecraft:MinecartChest)
minecart with command block Minecart with command block
(minecraft:MinecartCommandBlock)
minecart with furnace Minecart with furnace
(minecraft:MinecartFurnace)
arrow Minecart with hopper
(minecraft:MinecartHopper)
minecart rideable Minecart rideable
(minecraft:MinecartRideable)
minecart with spawner Minecart with spawner
(minecraft:MinecartSpawner)
arrow Minecart with TNT
(minecraft:MinecartTNT)
mooshroom Mooshroom
(minecraft:MushroomCow)
ocelot Ocelot
(minecraft:Ozelot)
painting Painting
(minecraft:Painting)
pig Pig
(minecraft:Pig)
zombie pigman Zombie Pigman
(minecraft:PigZombie)
polar bear Polar Bear
(minecraft:PolarBear)
primed tnt Primed TNT
(minecraft:PrimedTnt)
rabbit Rabbit
(minecraft:Rabbit)
sheep Sheep
(minecraft:Sheep)
shulker Shulker
(minecraft:Shulker)
shulker bullet Shulker bullet
(minecraft:ShulkerBullet)
silverfish Silverfish
(minecraft:Silverfish)
skeleton Skeleton or wither skeleton
(minecraft:Skeleton)
slime Slime
(minecraft:Slime)
small fireball Small fireball
(minecraft:SmallFireball)
snowball Snowball
(minecraft:Snowball)
snow man Snow man or snow golem
(minecraft:SnowMan)
spectral arrow Spectral arrow
(minecraft:SpectralArrow)
spider Spider
(minecraft:Spider)
squid Squid
(minecraft:Squid)
thrown egg Thrown egg
(minecraft:ThrownEgg)
thrown ender pearl Thrown ender pearl
(minecraft:ThrownEnderpearl)
thrown experience bottle Thrown experience bottle
(minecraft:ThrownExpBottle)
thrown potion Thrown potion
(minecraft:ThrownPotion)
villager Villager
(minecraft:Villager)
iron golem Iron Golem
(minecraft:VillagerGolem)
witch Witch
(minecraft:Witch)
wither boss Wither boss
(minecraft:WitherBoss)
wither skull Wither skeleton skull
(minecraft:WitherSkull)
wolf Wolf
(minecraft:Wolf)
experience Experience orb
(minecraft:XPOrb)
zombie Zombie or zombie villager
(minecraft:Zombie)

Example of how to use an Entity Value in /summon command

The entity value comes in handy when you want to summon an entity such as a creeper, zombie or horse.

For example, you use the entity value of EntityHorse in the /summon command when you want to summon a horse.

/summon EntityHorse ~ ~ ~ {Tame:1}

Example of how to use an Entity Value in /entitydata command

You can use the entity value when you want to change a data tag for an entity.

For example, you use the entity value of Cow in the /entitydata command when you want to give a custom name of Duke to all cows within a radius of 10 blocks.

/entitydata @e[type=Cow,r=10] {CustomName:Duke}