Represents the state of an entity (a mob, the player, or other moving objects like minecarts) in the world.

Hierarchy

Constructors

  • Returns Entity

Properties

dimension: Dimension

Dimension that the entity is currently within.

Throws

This property can throw when used.

headLocation: Location

Location of the center of the head component of the entity.

Throws

This property can throw when used.

id: string

Unique identifier of the entity. This identifier is intended to be consistent across loads of a world instance. No meaning should be inferred from the value and structure of this unique identifier - do not parse or interpret it.

Throws

This property can throw when used.

isSneaking: boolean

Whether the entity is sneaking - that is, moving more slowly and more quietly.

location: Vector3

Current location of the entity.

Throws

This property can throw when used.

nameTag: string

Given name of the entity.

rotation: XYRotation

Main rotation of the entity.

Throws

This property can throw when used.

scoreboard: ScoreboardIdentity

Returns a scoreboard identity that represents this entity.

Throws

This property can throw when used.

target: Entity

Retrieves or sets an entity that is used as the target of AI-related behaviors, like attacking.

Throws

This property can throw when used.

typeId: string

Unique identifier of the type of the entity - for example, 'minecraft:skeleton'.

Throws

This property can throw when used.

velocity: Vector

Velocity of the entity.

Throws

This property can throw when used.

viewDirection: Vector3

Methods

  • Parameters

    • effectType: EffectType

      Type of effect to add to the entity.

    • duration: number

      Amount of time, in ticks, for the effect to apply.

    • Optional amplifier: number

      Optional amplification of the effect to apply.

    • Optional showParticles: boolean

    Returns void

    Remarks

    Adds an effect, like poison, to the entity.

    Throws

    This function can throw errors.

    Example

    addEffect.js

           const villagerId = "minecraft:villager_v2<minecraft:ageable_grow_up>";
    const villagerLoc = new BlockLocation(1, 2, 1);
    const villager = test.spawn(villagerId, villagerLoc);
    const duration = 20;

    villager.addEffect(MinecraftEffectTypes.poison, duration, 1);

    Example

    quickFoxLazyDog.ts

             const fox = overworld.spawnEntity(
    "minecraft:fox",
    new mc.BlockLocation(targetLocation.x + 1, targetLocation.y + 2, targetLocation.z + 3)
    );
    fox.addEffect(mc.MinecraftEffectTypes.speed, 10, 20);
    log("Created a fox.");

    const wolf = overworld.spawnEntity(
    "minecraft:wolf",
    new mc.BlockLocation(targetLocation.x + 4, targetLocation.y + 2, targetLocation.z + 3)
    );
    wolf.addEffect(mc.MinecraftEffectTypes.slowness, 10, 20);
    wolf.isSneaking = true;
    log("Created a sneaking wolf.", 1);
  • Parameters

    • tag: string

      Content of the tag to add.

    Returns boolean

    Remarks

    Adds a specified tag to an entity.

    Throws

    This function can throw errors.

  • Parameters

    • componentId: string

      The identifier of the component (e.g., 'minecraft:rideable') to retrieve. If no namespace prefix is specified, 'minecraft:' is assumed. If the component is not present on the entity, undefined is returned.

    Returns IEntityComponent

    Remarks

    Gets a component (that represents additional capabilities) for an entity.

  • Returns IEntityComponent[]

    Remarks

    Returns all components that are both present on this entity and supported by the API.

  • Parameters

    • identifier: string

    Returns string | number | boolean

    Returns the value for the property, or undefined if the property has not been set.

    Remarks

    Returns a property value.

    Throws

    This function can throw errors.

  • Parameters

    Returns Effect

    Effect object for the specified effect, or undefined if the effect is not present.

    Remarks

    Returns the effect for the specified EffectType on the entity, or undefined if the effect is not present.

    Throws

    This function can throw errors.

  • Returns string[]

    Remarks

    Returns all tags associated with an entity.

    Throws

    This function can throw errors.

  • Parameters

    • componentId: string

      The identifier of the component (e.g., 'minecraft:rideable') to retrieve. If no namespace prefix is specified, 'minecraft:' is assumed.

    Returns boolean

    Remarks

    Returns true if the specified component is present on this entity.

  • Parameters

    • tag: string

      Identifier of the tag to test for.

    Returns boolean

    Remarks

    Tests whether an entity has a particular tag.

    Throws

    This function can throw errors.

  • Returns void

    Remarks

    Kills this entity. The entity will drop loot as normal.

    Throws

    This function can throw errors.

  • Parameters

    • identifier: string

    Returns boolean

    Remarks

    Removes a specified property.

    Throws

    This function can throw errors.

  • Parameters

    • tag: string

      Content of the tag to remove.

    Returns boolean

    Remarks

    Removes a specified tag from an entity.

    Throws

    This function can throw errors.

  • Parameters

    • commandString: string

      Command to run. Note that command strings should not start with slash.

    Returns Promise<CommandResult>

    For commands that return data, returns a JSON structure with command response values.

    Remarks

    Runs a particular command asynchronously from the context of this entity. Note that there is a maximum queue of 128 asynchronous commands that can be run in a given tick.

    Throws

    This function can throw errors.

  • Parameters

    • identifier: string
    • value: string | number | boolean

      Data value of the property to set.

    Returns void

    Remarks

    Sets a specified property to a value.

    Throws

    This function can throw errors.

  • Parameters

    • degreesX: number
    • degreesY: number

    Returns void

    Remarks

    Sets the main rotation of the entity.

    Throws

    This function can throw errors.

  • Parameters

    • velocity: Vector3

      X/Y/Z components of the velocity.

    Returns void

    Remarks

    Sets a velocity for the entity to move with.

    Throws

    This function can throw errors.

  • Parameters

    • location: Vector3

      New location for the entity.

    • dimension: Dimension

      Dimension to move the selected entity to.

    • xRotation: number

      X rotation of the entity after teleportation.

    • yRotation: number

      Y rotation of the entity after teleportation.

    • Optional keepVelocity: boolean

    Returns void

    Remarks

    Teleports the selected entity to a new location

    Throws

    This function can throw errors.

  • Parameters

    • location: Vector3

      New location for the entity.

    • dimension: Dimension

      Dimension to move the selected entity to.

    • facingLocation: Vector3

      Location that this entity will be facing.

    • Optional keepVelocity: boolean

    Returns void

    Remarks

    Teleports the selected entity to a new location, and will have the entity facing a specified location.

    Throws

    This function can throw errors.

  • Parameters

    • eventName: string

      Name of the entity type event to trigger. If a namespace is not specified, minecraft: is assumed.

    Returns void

    Remarks

    Triggers an entity type event. For every entity, a number of events are defined in an entities' definition for key entity behaviors; for example, creepers have a minecraft:start_exploding type event.

    Throws

    This function can throw errors.