Legacy Console Edition data values/Entities
This article needs to be updated.
Please update this page to reflect recent updates or newly available information.
Reason: Need to add entities from PlayStation 4 Edition (Latest version is equivalent to Java Edition 1.14), including updating existing entities. The entities on this page come from Minecraft: Xbox One Edition (Latest version is equivalent to Java Edition 1.12).
Reason: Need to add entities from PlayStation 4 Edition (Latest version is equivalent to Java Edition 1.14), including updating existing entities. The entities on this page come from Minecraft: Xbox One Edition (Latest version is equivalent to Java Edition 1.12).
This section needs expansion.
You can help by expanding it.
Instructions: eINSTANCEOF is an enum that consists of bitflags, with different flags combined to make up the entity ID, these flags should be reversed and the values updated accordingly to not have such cryptic entity IDs.
The ID format seems to be based on the entity base class in addition to some unique groups that 4J has come up with.
Example:
enum eINSTANCEOF {
/* ... */
eMinecart = 0x0A800000,
eMinecartRideable = 0x0A800001,
eMinecartFurnace = 0x0A800003,
eMinecartTNT = 0x0A800004,
eMinecraftCommandBlock = 0x0A800005,
eMinecartSpawner = 0x0A800006,
eMinecartChest = 0x0A840002,
eMinecartHopper = 0x0A840005,
/* ... */
}
Which is actually:
// Categories
static constexpr unsigned int MINECART = 0x0A800000;
static constexpr unsigned int MINECART_CONTAINER = 0x00040000;
// Entities
enum eINSTANCEOF {
/* ... */
eMinecart = MINECART | 0x00000000,
eMinecartRideable = MINECART | 0x00000001,
eMinecartChest = MINECART | MINECART_CONTAINER | 0x00000002,
eMinecartFurnace = MINECART | 0x00000003,
eMinecartTNT = MINECART | 0x00000004,
eMinecartHopper = MINECART | MINECART_CONTAINER | 0x00000005,
eMinecraftCommandBlock = MINECART | 0x00000005,
eMinecartSpawner = MINECART | 0x00000006,
/* ... */
}
| Item | Resource location | Numeric ID | eINSTANCEOF |
|---|---|---|---|
item |
1 | 0x800000a | |
xp_orb |
2 | 0x8000003 | |
area_effect_cloud |
3 | 0x800000f | |
elder_guardian |
4 | 0x5d544001 | |
wither_skeleton |
5 | 0x5d540402 | |
stray |
6 | 0x5d540403 | |
egg |
7 | 0x8a200002 | |
leash_knot |
8 | 0xa080003 | |
painting |
9 | 0xa080001 | |
arrow |
10 | 0x8a020002 | |
snowball |
11 | 0x8a200001 | |
fireball |
12 | 0x8a400003 | |
small_fireball |
13 | 0x8a400004 | |
ender_pearl |
14 | 0x8a200003 | |
eye_of_ender_signal |
15 | 0x88000004 | |
potion |
16 | 0x8a200004 | |
xp_bottle |
17 | 0x8a200005 | |
item_frame |
18 | 0xa080002 | |
wither_skull |
19 | 0x8a400002 | |
tnt |
20 | 0x800000b | |
falling_block |
21 | 0x8000009 | |
fireworks_rocket |
22 | 0x88000005 | |
husk |
23 | 0x5d550003 | |
spectral_arrow |
24 | 0x8a020001 | |
shulker_bullet |
25 | 0x8000010 | |
dragon_fireball |
26 | 0x8a400001 | |
zombie_villager |
27 | 0x5d550002 | |
skeleton_horse |
28 | 0x2d690002 | |
zombie_horse |
29 | 0x2d690003 | |
armor_stand |
30 | 0xc000001 | |
donkey |
31 | 0x2d698001 | |
mule |
32 | 0x2d698002 | |
evocation_fangs |
33 | 0x8000011 | |
evocation_illager |
34 | 0x5d541801 | |
vex |
35 | 0x5d540008 | |
vindication_illager |
36 | 0x5d541001 | |
illusion_illager |
37 | 0x5d541802 | |
boat |
41 | 0x8000008 | |
minecart |
42 | 0xa800001 | |
chest_minecart |
43 | 0xa840002 | |
furnace_minecart |
44 | 0xa800003 | |
tnt_minecart |
45 | 0xa800004 | |
hopper_minecart |
46 | 0xa840005 | |
spawner_minecart |
47 | 0xa800006 | |
creeper |
50 | 0x5d540001 | |
skeleton |
51 | 0x5d540401 | |
spider |
52 | 0x5d560000 | |
giant |
53 | 0x5d540002 | |
zombie |
54 | 0x5d550000 | |
slime |
55 | 0x5d108000 | |
ghast |
56 | 0x5d001001 | |
zombie_pigman |
57 | 0x5d550001 | |
enderman |
58 | 0x5d540003 | |
cave_spider |
59 | 0x5d560001 | |
silverfish |
60 | 0x5d540004 | |
blaze |
61 | 0x5d540005 | |
magma_cube |
62 | 0x5d108001 | |
ender_dragon |
63 | 0xd000005 | |
wither |
64 | 0x5d540007 | |
bat |
65 | 0x1d004001 | |
witch |
66 | 0x5d540006 | |
endermite |
67 | 0x4d54000b | |
guardian |
68 | 0x5d544000 | |
shulker |
69 | 0x4d580003 | |
pig |
90 | 0x2d680003 | |
sheep |
91 | 0x2d680002 | |
cow |
92 | 0x2d6a0000 | |
chicken |
93 | 0xd680004 | |
squid |
94 | 0xd102001 | |
wolf |
95 | 0xd6c0002 | |
mooshroom |
96 | 0x2d6a0001 | |
snowman |
97 | 0x2d580001 | |
ocelot |
98 | 0x2d6c0001 | |
villager_golem |
99 | 0xd580002 | |
horse |
100 | 0x2d690001 | |
rabbit |
101 | 0x2d680005 | |
polar_bear |
102 | 0x2d680006 | |
llama |
103 | 0x2d698003 | |
llama_spit |
104 | 0x88000012 | |
parrot |
105 | 0x2d6c0003 | |
villager |
120 | 0xd600001 | |
ender_crystal |
200 | 0x800000e |