Represent a minecraft entity
const Entity = require("prismarine-entity")('1.8.9')
const entity = new Entity(0)
console.log(entity)
Entities represent players, mobs, and objects.
Choices:
player
mob
object
global
- lightningorb
- experience orb.other
- introduced with a recent Minecraft update and not yet recognized or used by a third-party mod
If the entity type is player
, this field will be set.
If the entity type is mob
, this field will be set.
Field set for mob and object. A long name in multiple words.
Field set for mob and object. The numerical type of the entity (1,2,...)
Field set for mob and object. The kind of entity (for example Hostile mobs, Passive mobs, NPCs).
Field set for mob and object. A short name for the entity.
If the entity type is object
, this field will be set.
If the entity type is orb
, this field will be how much experience you
get from collecting the orb.
Version dependent.
1.8 Layout:
0
- held item1
- shoes2
- legging3
- torso4
- head
1.9 and later:
0
- held item1
- off-hand2
- shoes3
- legging4
- torso5
- head
Equivalent to entity.equipment[0]
.
See http://wiki.vg/Entities#Entity_Metadata_Format for more details.
Entity that this entity is riding on
Entity that is riding on this entity
The health of the player, default: 20
The food of the player, default: 20
Whether or not the entity is elytra flying.
The player
returns a prismarine-chat
ChatMessage object for the name of the entity or null if there isn't one
returns a prismarine-item
Item object for the dropped item, if this is a dropped item, or it will return null
- use getter for
.heldItem
(#73) (thanks @szdytom)
- Use console.trace instead of console.log for deprecation message (#71) (thanks @extremeheat)
- Add default elytra flying value (#69) (thanks @lkwilson)
- Fix equipment documentation for other versions (#67) (thanks @IceTank)
- Add command gh workflow allowing to use release command in comments (#66) (thanks @rom1504)
- Update to node 18.0.0 (#65) (thanks @rom1504)
- Bump @types/node from 18.16.13 to 20.2.1 (#64) (thanks @dependabot[bot])
- Add missing type (#55) (thanks @sefirosweb)
- deprecate objectType and mobType (#53) (thanks @Epirito)
- Update package.json (#52) (thanks @Epirito)
- mcData to registry refactoring (step towards #2450)
- Update mcdata
- Adds Entity#getDroppedItem
- require mcversion in constructor
- add Entity#getCustomName()
- Add attributes for entity entity collision calculation (thanks @O-of)
- Add food saturation to typings
- Add id to typings
- Add effects to typings
- Added entity width property
- typescript definitions (thanks @IdanHo)
- extend EventEmitter
- Import from mineflayer