LivingEntity
Importing the class
If you need to reference this type directly, like when casting an Array, or as a parameter, you will need to import it. Simply add the import at the top of the file.
import crafttweaker.api.entity.LivingEntity;
Extends
LivingEntity extends Entity
.
Implements
LivingEntity
implements the following interfaces:
Nameable
,EntityAccess
,CommandSource
,IAttachmentHolder
Undocumented Interfaces
Attackable
,ILivingEntityExtension
,SyncedDataHolder
,ScoreHolder
,IEntityExtension
,INBTSerializable<CompoundTag>
Members
// LivingEntity.absorptionAmount as floatmyLivingEntity.absorptionAmount
Return Type:
float
Returns: The absorption amount.
// LivingEntity.absorptionAmount() as float;myLivingEntity.absorptionAmount();
Return Type:
float
// LivingEntity.acceptsFailure as boolmyLivingEntity.acceptsFailure
Return Type:
bool
Returns: True if the commands from this source should return failure messages, false otherwise.
// LivingEntity.acceptsFailure() as bool;myLivingEntity.acceptsFailure();
Return Type:
bool
// LivingEntity.acceptsSuccess as boolmyLivingEntity.acceptsSuccess
Return Type:
bool
Returns: True if the commands from this source should return successful messages, false otherwise.
// LivingEntity.acceptsSuccess() as bool;myLivingEntity.acceptsSuccess();
Return Type:
bool
myLivingEntity.activeEffects
Return Type:
Collection<MobEffectInstance>
Returns: The active effects.
myLivingEntity.activeEffects();
Return Type:
Collection<MobEffectInstance>
myLivingEntity.activeEffectsMap
Return Type:
MobEffectInstance[MobEffect]
Returns: The active effects map.
myLivingEntity.activeEffectsMap();
Return Type:
MobEffectInstance[MobEffect]
Returns: True if the effect was added, false otherwise.
myLivingEntity.addEffect(myMobEffectInstance);
Parameters:
Return Type:
bool
Returns: True if the effect was added, false otherwise.
myLivingEntity.addEffect(myMobEffectInstance, myEntity);
Parameters:
Return Type:
bool
Returns: true if the tag was added.
// LivingEntity.addTag(tagName as string) as bool;myLivingEntity.addTag(myString);
Parameters:
tagName: string
Type: string
- The name of the tag to add.
Return Type:
bool
// LivingEntity.airSupply as intmyLivingEntity.airSupply
Return Type:
int
Returns: The current air supply of the entity.
// LivingEntity.airSupply() as int;myLivingEntity.airSupply();
Return Type:
int
// LivingEntity.alwaysAccepts as boolmyLivingEntity.alwaysAccepts
Return Type:
bool
Returns: True if the command source always accepts, false otherwise.
// LivingEntity.alwaysAccepts() as bool;myLivingEntity.alwaysAccepts();
Return Type:
bool
This is a value from 0 to 1 that represents the percentage of the entity's body that is covered by armor.
// LivingEntity.armorCoverPercentage as floatmyLivingEntity.armorCoverPercentage
Return Type:
float
This is a value from 0 to 1 that represents the percentage of the entity's body that is covered by armor.
Returns: The armor cover percentage.
// LivingEntity.armorCoverPercentage() as float;myLivingEntity.armorCoverPercentage();
Return Type:
float
// LivingEntity.armorValue as intmyLivingEntity.armorValue
Return Type:
int
Returns: The armor value.
// LivingEntity.armorValue() as int;myLivingEntity.armorValue();
Return Type:
int
// LivingEntity.arrowCount as intmyLivingEntity.arrowCount
Return Type:
int
Returns: The arrow count.
// LivingEntity.arrowCount() as int;myLivingEntity.arrowCount();
Return Type:
int
// LivingEntity.attackable as boolmyLivingEntity.attackable
Return Type:
bool
Returns: True if the entity is attackable, false otherwise.
// LivingEntity.attackable() as bool;myLivingEntity.attackable();
Return Type:
bool
// LivingEntity.bbHeight as floatmyLivingEntity.bbHeight
Return Type:
float
Returns: The height of the bounding box of the entity.
// LivingEntity.bbHeight() as float;myLivingEntity.bbHeight();
Return Type:
float
// LivingEntity.bbWidth as floatmyLivingEntity.bbWidth
Return Type:
float
Returns: The width of the bounding box of the entity.
// LivingEntity.bbWidth() as float;myLivingEntity.bbWidth();
Return Type:
float
// LivingEntity.blockX as intmyLivingEntity.blockX
Return Type:
int
Returns: The x coordinate of the entity.
// LivingEntity.blockX() as int;myLivingEntity.blockX();
Return Type:
int
// LivingEntity.blockY as intmyLivingEntity.blockY
Return Type:
int
Returns: The y coordinate of the entity.
// LivingEntity.blockY() as int;myLivingEntity.blockY();
Return Type:
int
// LivingEntity.blockZ as intmyLivingEntity.blockZ
Return Type:
int
Returns: The z coordinate of the entity.
// LivingEntity.blockZ() as int;myLivingEntity.blockZ();
Return Type:
int
Returns: True if this entity can attack the target, false otherwise.
myLivingEntity.canAttack(myLivingEntity);
Parameters:
Return Type:
bool
Returns: True if this entity can be affected by the effect, false otherwise.
myLivingEntity.canBeAffected(myMobEffectInstance);
Parameters:
effectInstance: MobEffectInstance
Type: MobEffectInstance
- The effect to check if this entity can be affected by.
Return Type:
bool
// LivingEntity.canBeCollidedWith as boolmyLivingEntity.canBeCollidedWith
Return Type:
bool
Returns: true if the entity can be collided with.
// LivingEntity.canBeCollidedWith() as bool;myLivingEntity.canBeCollidedWith();
Return Type:
bool
// LivingEntity.canBeSeenAsEnemy as boolmyLivingEntity.canBeSeenAsEnemy
Return Type:
bool
Returns: True if this entity can be seen as an enemy, false otherwise.
// LivingEntity.canBeSeenAsEnemy() as bool;myLivingEntity.canBeSeenAsEnemy();
Return Type:
bool
// LivingEntity.canBeSeenByAnyone as boolmyLivingEntity.canBeSeenByAnyone
Return Type:
bool
Returns: True if this entity can be seen by anyone, false otherwise.
// LivingEntity.canBeSeenByAnyone() as bool;myLivingEntity.canBeSeenByAnyone();
Return Type:
bool
// LivingEntity.canBreatheUnderwater as boolmyLivingEntity.canBreatheUnderwater
Return Type:
bool
Returns: True if the entity can breathe underwater, false otherwise.
// LivingEntity.canBreatheUnderwater() as bool;myLivingEntity.canBreatheUnderwater();
Return Type:
bool
Returns: true if the entity can collide with the given entity.
myLivingEntity.canCollideWith(myEntity);
Return Type:
bool
// LivingEntity.canFreeze as boolmyLivingEntity.canFreeze
Return Type:
bool
Returns: Whether the entity can freeze.
// LivingEntity.canFreeze() as bool;myLivingEntity.canFreeze();
Return Type:
bool
Returns: True if the entity can stand on the fluid, false otherwise.
myLivingEntity.canStandOnFluid(myFluid);
Return Type:
bool
// LivingEntity.clearFire();myLivingEntity.clearFire();
// LivingEntity.clearSleepingPos();myLivingEntity.clearSleepingPos();
Returns: true if the entity is closer than the given distance to the other entity.
myLivingEntity.closerThan(myEntity, myDouble);
Parameters:
Return Type:
bool
net.minecraft.world.entity.item.ItemEntity
s who's item is in the dampens_vibrations item tag.// LivingEntity.dampensVibrations as boolmyLivingEntity.dampensVibrations
Return Type:
bool
net.minecraft.world.entity.item.ItemEntity
s who's item is in the dampens_vibrations item tag.Returns: true if the entity dampens vibrations.
// LivingEntity.dampensVibrations() as bool;myLivingEntity.dampensVibrations();
Return Type:
bool
myLivingEntity.die(myDamageSource);
Parameters:
// LivingEntity.dimensionChangingDelay as intmyLivingEntity.dimensionChangingDelay
Return Type:
int
Returns: The dimension changing delay of the entity.
// LivingEntity.dimensionChangingDelay() as int;myLivingEntity.dimensionChangingDelay();
Return Type:
int
// LivingEntity.discard();myLivingEntity.discard();
// LivingEntity.dismountsUnderwater as boolmyLivingEntity.dismountsUnderwater
Return Type:
bool
Returns: true if the entity dismounts underwater.
// LivingEntity.dismountsUnderwater() as bool;myLivingEntity.dismountsUnderwater();
Return Type:
bool
Returns: The squared distance to the given position.
// LivingEntity.distanceToSqr(x as double, y as double, z as double) as double;myLivingEntity.distanceToSqr(myDouble, myDouble, myDouble);
Parameters:
x: double
Type: double
- The x position to get the squared distance to. y: double
Type: double
- The y position to get the squared distance to. z: double
Type: double
- The z position to get the squared distance to.
Return Type:
double
Returns: The squared distance to the given entity.
myLivingEntity.distanceToSqr(myEntity);
Return Type:
double
Returns: The item that the entity ate.
myLivingEntity.eat(myLevel, myItemStack);
Parameters:
Return Type:
ItemStack
// LivingEntity.ejectPassengers();myLivingEntity.ejectPassengers();
// LivingEntity.eyeHeight as floatmyLivingEntity.eyeHeight
Return Type:
float
Returns: The eye height of the entity.
// LivingEntity.eyeHeight() as float;myLivingEntity.eyeHeight();
Return Type:
float
// LivingEntity.eyeY as doublemyLivingEntity.eyeY
Return Type:
double
Returns: The y coordinate of the entity's eyes.
// LivingEntity.eyeY() as double;myLivingEntity.eyeY();
Return Type:
double
// LivingEntity.fallFlyingTicks as intmyLivingEntity.fallFlyingTicks
Return Type:
int
Returns: The ticks that the entity has been flying with an elytra.
// LivingEntity.fallFlyingTicks() as int;myLivingEntity.fallFlyingTicks();
Return Type:
int
// LivingEntity.fireImmune as boolmyLivingEntity.fireImmune
Return Type:
bool
Returns: true if the entity is fire immune.
// LivingEntity.fireImmune() as bool;myLivingEntity.fireImmune();
Return Type:
bool
// LivingEntity.fireTicks as intmyLivingEntity.fireTicks
Return Type:
int
// LivingEntity.fireTicks = (ticks as int);myLivingEntity.fireTicks = myInt;
Parameters:
ticks: int
Type: int
- The number of ticks to set the remaining fire ticks to. // LivingEntity.fireTicks(ticks as int);myLivingEntity.fireTicks(myInt);
Parameters:
ticks: int
Type: int
- The number of ticks to set the remaining fire ticks to. Returns: The remaining fire ticks of the entity.
// LivingEntity.fireTicks() as int;myLivingEntity.fireTicks();
Return Type:
int
// LivingEntity.fluidJumpThreshold as doublemyLivingEntity.fluidJumpThreshold
Return Type:
double
Returns: The fluid jump threshold of the entity.
// LivingEntity.fluidJumpThreshold() as double;myLivingEntity.fluidJumpThreshold();
Return Type:
double
myLivingEntity.forceAddEffect(myMobEffectInstance, myEntity);
Parameters:
effectInstance: MobEffectInstance
Type: MobEffectInstance
- The effect to force this entity to have. myLivingEntity.getAttachmentData<T>(myAttachmentType);
Parameters:
type: AttachmentType<T>
Type: AttachmentType<T>
Return Type:
T
myLivingEntity.getAttachmentData<T>(mySupplier);
Parameters:
type: Supplier<AttachmentType<T>>
Type: Supplier<AttachmentType<T>>
Return Type:
T
Returns: The attribute.
myLivingEntity.getAttribute(myAttribute);
Return Type:
AttributeInstance
Returns: The base attribute value.
myLivingEntity.getAttributeBaseValue(myAttribute);
Return Type:
double
MobEffectInstance
for the given effect on this entity.Returns: The effect instance.
myLivingEntity.getEffect(myMobEffect);
Return Type:
MobEffectInstance
Returns: The item in the slot.
myLivingEntity.getItemBySlot(myEquipmentSlot);
Parameters:
Return Type:
ItemStack
Returns: The item in the hand.
myLivingEntity.getItemInHand(myInteractionHand);
Parameters:
Return Type:
ItemStack
Returns: The swim amount.
// LivingEntity.getSwimAmount(partialTicks as float) as float;myLivingEntity.getSwimAmount(myFloat);
Parameters:
partialTicks: float
Type: float
- The partial ticks to get the swim amount for.
Return Type:
float
Returns: The visibility percent.
myLivingEntity.getVisibilityPercent(myEntity);
Return Type:
double
Returns: The x coordinate of the entity.
// LivingEntity.getX(scale as double) as double;myLivingEntity.getX(myDouble);
Parameters:
scale: double
Type: double
- The scale to get the x coordinate of the entity.
Return Type:
double
Returns: The y coordinate of the entity.
// LivingEntity.getY(scale as double) as double;myLivingEntity.getY(myDouble);
Parameters:
scale: double
Type: double
- The scale to get the y coordinate of the entity.
Return Type:
double
Returns: The z coordinate of the entity.
// LivingEntity.getZ(scale as double) as double;myLivingEntity.getZ(myDouble);
Parameters:
scale: double
Type: double
- The scale to get the z coordinate of the entity.
Return Type:
double
myLivingEntity.hasAttachmentData<T>(myAttachmentType);
Parameters:
type: AttachmentType<T>
Type: AttachmentType<T>
Return Type:
bool
myLivingEntity.hasAttachmentData<T>(mySupplier);
Parameters:
type: Supplier<AttachmentType<T>>
Type: Supplier<AttachmentType<T>>
Return Type:
bool
// LivingEntity.hasCustomName as boolmyLivingEntity.hasCustomName
Return Type:
bool
// LivingEntity.hasCustomName as boolmyLivingEntity.hasCustomName
Return Type:
bool
Returns: true if the entity has a custom name.
// LivingEntity.hasCustomName() as bool;myLivingEntity.hasCustomName();
Return Type:
bool
// LivingEntity.hasCustomName() as bool;myLivingEntity.hasCustomName();
Return Type:
bool
Returns: True if this entity has the effect, false otherwise.
myLivingEntity.hasEffect(myMobEffect);
Return Type:
bool
// LivingEntity.hasExactlyOnePlayerPassenger as boolmyLivingEntity.hasExactlyOnePlayerPassenger
Return Type:
bool
Returns: true if the entity has exactly one player passenger.
// LivingEntity.hasExactlyOnePlayerPassenger() as bool;myLivingEntity.hasExactlyOnePlayerPassenger();
Return Type:
bool
// LivingEntity.hasGlowingTag as boolmyLivingEntity.hasGlowingTag
Return Type:
bool
Returns: true if the entity is currently glowing.
// LivingEntity.hasGlowingTag() as bool;myLivingEntity.hasGlowingTag();
Return Type:
bool
Returns: true if the entity has an indirect passenger.
myLivingEntity.hasIndirectPassenger(myEntity);
Return Type:
bool
Returns: True if the entity has an item in the slot, false otherwise.
myLivingEntity.hasItemInSlot(myEquipmentSlot);
Parameters:
Return Type:
bool
Returns: True if the entity has a line of sight to the entity, false otherwise.
myLivingEntity.hasLineOfSight(myEntity);
Return Type:
bool
Returns: true if the entity has a passenger that matches the predicate.
myLivingEntity.hasPassenger(myPredicate);
Parameters:
Return Type:
bool
// LivingEntity.heal(amount as float);myLivingEntity.heal(myFloat);
Parameters:
amount: float
Type: float
- The amount to heal. // LivingEntity.health as floatmyLivingEntity.health
Return Type:
float
Returns: The health of this entity.
// LivingEntity.health() as float;myLivingEntity.health();
Return Type:
float
DamageSource
and amount.Returns: true if the entity was hurt.
myLivingEntity.hurt(myDamageSource, myFloat);
Parameters:
amount: float
Type: float
- The amount of damage to deal.
Return Type:
bool
// LivingEntity.id as intmyLivingEntity.id
Return Type:
int
Returns: The ID of the entity.
// LivingEntity.id() as int;myLivingEntity.id();
Return Type:
int
BlockState
that this entity is currently inside.// LivingEntity.inBlockState as BlockStatemyLivingEntity.inBlockState
Return Type:
BlockState
BlockState
that this entity is currently inside.Returns: The block state that this entity is currently inside
myLivingEntity.inBlockState();
Return Type:
BlockState
// LivingEntity.isAffectedByPotions as boolmyLivingEntity.isAffectedByPotions
Return Type:
bool
Returns: True if the entity is affected by potions, false otherwise.
// LivingEntity.isAffectedByPotions() as bool;myLivingEntity.isAffectedByPotions();
Return Type:
bool
// LivingEntity.isAlive as boolmyLivingEntity.isAlive
Return Type:
bool
Returns: true if the entity is alive.
// LivingEntity.isAlive() as bool;myLivingEntity.isAlive();
Return Type:
bool
// LivingEntity.isAlwaysTicking as boolmyLivingEntity.isAlwaysTicking
Return Type:
bool
Returns: true if the entity is always ticking.
// LivingEntity.isAlwaysTicking() as bool;myLivingEntity.isAlwaysTicking();
Return Type:
bool
// LivingEntity.isAttackable as boolmyLivingEntity.isAttackable
Return Type:
bool
Returns: true if the entity is attackable.
// LivingEntity.isAttackable() as bool;myLivingEntity.isAttackable();
Return Type:
bool
// LivingEntity.isAutoSpinAttack as boolmyLivingEntity.isAutoSpinAttack
Return Type:
bool
Returns: True if the entity is performing an auto spin attack, false otherwise.
// LivingEntity.isAutoSpinAttack() as bool;myLivingEntity.isAutoSpinAttack();
Return Type:
bool
// LivingEntity.isBaby as boolmyLivingEntity.isBaby
Return Type:
bool
Returns: True if the entity is a baby, false otherwise.
// LivingEntity.isBaby() as bool;myLivingEntity.isBaby();
Return Type:
bool
// LivingEntity.isBlocking as boolmyLivingEntity.isBlocking
Return Type:
bool
Returns: True if the entity is blocking, false otherwise.
// LivingEntity.isBlocking() as bool;myLivingEntity.isBlocking();
Return Type:
bool
BlockState
at the given BlockPos
.Returns: true if the entity is colliding with the block.
myLivingEntity.isColliding(myBlockPos, myBlockState);
Parameters:
Return Type:
bool
// LivingEntity.isCrouching as boolmyLivingEntity.isCrouching
Return Type:
bool
Returns: true if the entity is crouching.
// LivingEntity.isCrouching() as bool;myLivingEntity.isCrouching();
Return Type:
bool
// LivingEntity.isCurrentlyGlowing as boolmyLivingEntity.isCurrentlyGlowing
Return Type:
bool
Returns: True if the entity is currently glowing, false otherwise.
// LivingEntity.isCurrentlyGlowing() as bool;myLivingEntity.isCurrentlyGlowing();
Return Type:
bool
// LivingEntity.isCustomNameVisible as boolmyLivingEntity.isCustomNameVisible
Return Type:
bool
Returns: true if the custom name is visible.
// LivingEntity.isCustomNameVisible() as bool;myLivingEntity.isCustomNameVisible();
Return Type:
bool
Returns: True if the entity can block the damage source, false otherwise.
myLivingEntity.isDamageSourceBlocked(myDamageSource);
Parameters:
Return Type:
bool
// LivingEntity.isDeadOrDying as boolmyLivingEntity.isDeadOrDying
Return Type:
bool
Returns: True if this entity is dead or dying, false otherwise.
// LivingEntity.isDeadOrDying() as bool;myLivingEntity.isDeadOrDying();
Return Type:
bool
// LivingEntity.isDescending as boolmyLivingEntity.isDescending
Return Type:
bool
Returns: true if the entity is descending.
// LivingEntity.isDescending() as bool;myLivingEntity.isDescending();
Return Type:
bool
// LivingEntity.isDiscrete as boolmyLivingEntity.isDiscrete
Return Type:
bool
Returns: true if the entity is being discrete.
// LivingEntity.isDiscrete() as bool;myLivingEntity.isDiscrete();
Return Type:
bool
// LivingEntity.isFallFlying as boolmyLivingEntity.isFallFlying
Return Type:
bool
Returns: True if the entity is flying with an elytra, false otherwise.
// LivingEntity.isFallFlying() as bool;myLivingEntity.isFallFlying();
Return Type:
bool
Returns: true if the entity is free to move in the given position.
// LivingEntity.isFree(x as double, y as double, z as double) as bool;myLivingEntity.isFree(myDouble, myDouble, myDouble);
Parameters:
x: double
Type: double
- The x position to check. y: double
Type: double
- The y position to check. z: double
Type: double
- The z position to check.
Return Type:
bool
// LivingEntity.isFullyFrozen as boolmyLivingEntity.isFullyFrozen
Return Type:
bool
Returns: true if the entity is fully frozen.
// LivingEntity.isFullyFrozen() as bool;myLivingEntity.isFullyFrozen();
Return Type:
bool
Returns: True if the entity is holding the item, false otherwise.
myLivingEntity.isHolding(myItem);
Parameters:
Return Type:
bool
Returns: True if the entity is holding the item, false otherwise.
myLivingEntity.isHolding(myPredicate);
Parameters:
Return Type:
bool
// LivingEntity.isInLava as boolmyLivingEntity.isInLava
Return Type:
bool
Returns: true if the entity is in lava.
// LivingEntity.isInLava() as bool;myLivingEntity.isInLava();
Return Type:
bool
// LivingEntity.isInvertedHealAndHarm as boolmyLivingEntity.isInvertedHealAndHarm
Return Type:
bool
Returns: True if this entity is inverted for heal and harm, false otherwise.
// LivingEntity.isInvertedHealAndHarm() as bool;myLivingEntity.isInvertedHealAndHarm();
Return Type:
bool
// LivingEntity.isInvisible as boolmyLivingEntity.isInvisible
Return Type:
bool
Returns: true if the entity is invisible.
// LivingEntity.isInvisible() as bool;myLivingEntity.isInvisible();
Return Type:
bool
// LivingEntity.isInvulnerable as boolmyLivingEntity.isInvulnerable
Return Type:
bool
Returns: true if the entity is invulnerable.
// LivingEntity.isInvulnerable() as bool;myLivingEntity.isInvulnerable();
Return Type:
bool
DamageSource
.Returns: true if the entity is invulnerable to the damage source.
myLivingEntity.isInvulnerableTo(myDamageSource);
Parameters:
Return Type:
bool
// LivingEntity.isInWall as boolmyLivingEntity.isInWall
Return Type:
bool
Returns: true if the entity is in a wall.
// LivingEntity.isInWall() as bool;myLivingEntity.isInWall();
Return Type:
bool
// LivingEntity.isInWater as boolmyLivingEntity.isInWater
Return Type:
bool
Returns: true if the entity is in water.
// LivingEntity.isInWater() as bool;myLivingEntity.isInWater();
Return Type:
bool
// LivingEntity.isInWaterOrBubble as boolmyLivingEntity.isInWaterOrBubble
Return Type:
bool
Returns: true if the entity is in water or a bubble column.
// LivingEntity.isInWaterOrBubble() as bool;myLivingEntity.isInWaterOrBubble();
Return Type:
bool
// LivingEntity.isInWaterOrRain as boolmyLivingEntity.isInWaterOrRain
Return Type:
bool
Returns: true if the entity is in water or rain.
// LivingEntity.isInWaterOrRain() as bool;myLivingEntity.isInWaterOrRain();
Return Type:
bool
// LivingEntity.isInWaterRainOrBubble as boolmyLivingEntity.isInWaterRainOrBubble
Return Type:
bool
Returns: true if the entity is in water or rain or a bubble column.
// LivingEntity.isInWaterRainOrBubble() as bool;myLivingEntity.isInWaterRainOrBubble();
Return Type:
bool
// LivingEntity.isNoGravity as boolmyLivingEntity.isNoGravity
Return Type:
bool
Returns: true if the entity has no gravity.
// LivingEntity.isNoGravity() as bool;myLivingEntity.isNoGravity();
Return Type:
bool
// LivingEntity.isOnFire as boolmyLivingEntity.isOnFire
Return Type:
bool
Returns: true if the entity is on fire.
// LivingEntity.isOnFire() as bool;myLivingEntity.isOnFire();
Return Type:
bool
// LivingEntity.isOnPortalCooldown as boolmyLivingEntity.isOnPortalCooldown
Return Type:
bool
Returns: true if the entity is on portal cooldown.
// LivingEntity.isOnPortalCooldown() as bool;myLivingEntity.isOnPortalCooldown();
Return Type:
bool
// LivingEntity.isPassenger as boolmyLivingEntity.isPassenger
Return Type:
bool
Returns: true if the entity is a passenger.
// LivingEntity.isPassenger() as bool;myLivingEntity.isPassenger();
Return Type:
bool
Returns: true if the entity is a passenger of the same vehicle.
myLivingEntity.isPassengerOfSameVehicle(myEntity);
Return Type:
bool
// LivingEntity.isPickable as boolmyLivingEntity.isPickable
Return Type:
bool
Returns: true if the entity is pickable.
// LivingEntity.isPickable() as bool;myLivingEntity.isPickable();
Return Type:
bool
// LivingEntity.isPushable as boolmyLivingEntity.isPushable
Return Type:
bool
Returns: true if the entity is pushable.
// LivingEntity.isPushable() as bool;myLivingEntity.isPushable();
Return Type:
bool
// LivingEntity.isPushedByFluid as boolmyLivingEntity.isPushedByFluid
Return Type:
bool
Returns: true if the entity is pushed by fluid.
// LivingEntity.isPushedByFluid() as bool;myLivingEntity.isPushedByFluid();
Return Type:
bool
// LivingEntity.isRemoved as boolmyLivingEntity.isRemoved
Return Type:
bool
Returns: Whether the entity has been removed.
// LivingEntity.isRemoved() as bool;myLivingEntity.isRemoved();
Return Type:
bool
// LivingEntity.isSensitiveToWater as boolmyLivingEntity.isSensitiveToWater
Return Type:
bool
Returns: True if the entity is sensitive to water, false otherwise.
// LivingEntity.isSensitiveToWater() as bool;myLivingEntity.isSensitiveToWater();
Return Type:
bool
// LivingEntity.isShiftKeyDown as boolmyLivingEntity.isShiftKeyDown
Return Type:
bool
Returns: true if the shift key is down.
// LivingEntity.isShiftKeyDown() as bool;myLivingEntity.isShiftKeyDown();
Return Type:
bool
// LivingEntity.isSilent as boolmyLivingEntity.isSilent
Return Type:
bool
Returns: true if the entity is silent.
// LivingEntity.isSilent() as bool;myLivingEntity.isSilent();
Return Type:
bool
// LivingEntity.isSleeping as boolmyLivingEntity.isSleeping
Return Type:
bool
Returns: True if the entity is sleeping, false otherwise.
// LivingEntity.isSleeping() as bool;myLivingEntity.isSleeping();
Return Type:
bool
// LivingEntity.isSpectator as boolmyLivingEntity.isSpectator
Return Type:
bool
Returns: true if the entity is a spectator.
// LivingEntity.isSpectator() as bool;myLivingEntity.isSpectator();
Return Type:
bool
// LivingEntity.isSprinting as boolmyLivingEntity.isSprinting
Return Type:
bool
Returns: true if the entity is sprinting.
// LivingEntity.isSprinting() as bool;myLivingEntity.isSprinting();
Return Type:
bool
// LivingEntity.isSteppingCarefully as boolmyLivingEntity.isSteppingCarefully
Return Type:
bool
Returns: true if the entity is stepping carefully.
// LivingEntity.isSteppingCarefully() as bool;myLivingEntity.isSteppingCarefully();
Return Type:
bool
// LivingEntity.isSuppressingBounce as boolmyLivingEntity.isSuppressingBounce
Return Type:
bool
Returns: true if the entity is suppressing bounce.
// LivingEntity.isSuppressingBounce() as bool;myLivingEntity.isSuppressingBounce();
Return Type:
bool
// LivingEntity.isSuppressingSlidingDownLadder as boolmyLivingEntity.isSuppressingSlidingDownLadder
Return Type:
bool
Returns: True if the entity is suppressing sliding down a ladder, false otherwise.
// LivingEntity.isSuppressingSlidingDownLadder() as bool;myLivingEntity.isSuppressingSlidingDownLadder();
Return Type:
bool
// LivingEntity.isSwimming as boolmyLivingEntity.isSwimming
Return Type:
bool
Returns: true if the entity is swimming.
// LivingEntity.isSwimming() as bool;myLivingEntity.isSwimming();
Return Type:
bool
// LivingEntity.isUnderWater as boolmyLivingEntity.isUnderWater
Return Type:
bool
Returns: true if the entity is underwater.
// LivingEntity.isUnderWater() as bool;myLivingEntity.isUnderWater();
Return Type:
bool
// LivingEntity.isUsingItem as boolmyLivingEntity.isUsingItem
Return Type:
bool
Returns: True if the entity is using an item, false otherwise.
// LivingEntity.isUsingItem() as bool;myLivingEntity.isUsingItem();
Return Type:
bool
// LivingEntity.isVehicle as boolmyLivingEntity.isVehicle
Return Type:
bool
Returns: true if the entity is a vehicle.
// LivingEntity.isVehicle() as bool;myLivingEntity.isVehicle();
Return Type:
bool
// LivingEntity.isVisuallyCrawling as boolmyLivingEntity.isVisuallyCrawling
Return Type:
bool
Returns: true if the entity is visually crawling.
// LivingEntity.isVisuallyCrawling() as bool;myLivingEntity.isVisuallyCrawling();
Return Type:
bool
// LivingEntity.isVisuallySwimming as boolmyLivingEntity.isVisuallySwimming
Return Type:
bool
Returns: True if the entity is visually swimming, false otherwise.
// LivingEntity.isVisuallySwimming() as bool;myLivingEntity.isVisuallySwimming();
Return Type:
bool
// LivingEntity.jumpBoostPower as doublemyLivingEntity.jumpBoostPower
Return Type:
double
Returns: The jump boost power.
// LivingEntity.jumpBoostPower() as double;myLivingEntity.jumpBoostPower();
Return Type:
double
// LivingEntity.kill();myLivingEntity.kill();
// LivingEntity.killCredit as LivingEntitymyLivingEntity.killCredit
Return Type:
LivingEntity
Returns: The kill credit.
myLivingEntity.killCredit();
Return Type:
LivingEntity
// LivingEntity.knockback(x as double, y as double, z as double);myLivingEntity.knockback(myDouble, myDouble, myDouble);
Parameters:
x: double
Type: double
- The x coordinate to knock back to. y: double
Type: double
- The y coordinate to knock back to. z: double
Type: double
- The z coordinate to knock back to. // LivingEntity.lastDamageSource as DamageSourcemyLivingEntity.lastDamageSource
Return Type:
DamageSource
Returns: The last damage source.
myLivingEntity.lastDamageSource();
Return Type:
DamageSource
// LivingEntity.lastHurtByMob as LivingEntitymyLivingEntity.lastHurtByMob
Return Type:
LivingEntity
Returns: The last entity that hurt this entity.
myLivingEntity.lastHurtByMob();
Return Type:
LivingEntity
// LivingEntity.lastHurtByMobTimestamp as intmyLivingEntity.lastHurtByMobTimestamp
Return Type:
int
Returns: The timestamp when this entity was last hurt by a mob.
// LivingEntity.lastHurtByMobTimestamp() as int;myLivingEntity.lastHurtByMobTimestamp();
Return Type:
int
// LivingEntity.lastHurtMob as LivingEntitymyLivingEntity.lastHurtMob
Return Type:
LivingEntity
Returns: The last entity that this entity hurt.
myLivingEntity.lastHurtMob();
Return Type:
LivingEntity
// LivingEntity.lastHurtMobTimestamp as intmyLivingEntity.lastHurtMobTimestamp
Return Type:
int
Returns: The timestamp when this entity last hurt a mob.
// LivingEntity.lastHurtMobTimestamp() as int;myLivingEntity.lastHurtMobTimestamp();
Return Type:
int
// LivingEntity.lavaHurt();myLivingEntity.lavaHurt();
// LivingEntity.lootTable as ResourceLocationmyLivingEntity.lootTable
Return Type:
ResourceLocation
Returns: The loot table.
myLivingEntity.lootTable();
Return Type:
ResourceLocation
// LivingEntity.lootTableSeed as longmyLivingEntity.lootTableSeed
Return Type:
long
// LivingEntity.mainArm as HumanoidArmmyLivingEntity.mainArm
Return Type:
HumanoidArm
Returns: The main arm.
myLivingEntity.mainArm();
Return Type:
HumanoidArm
// LivingEntity.maxAirSupply as intmyLivingEntity.maxAirSupply
Return Type:
int
Returns: The maximum air supply of the entity.
// LivingEntity.maxAirSupply() as int;myLivingEntity.maxAirSupply();
Return Type:
int
// LivingEntity.maxFallDistance as intmyLivingEntity.maxFallDistance
Return Type:
int
Returns: The maximum fall distance of the entity.
// LivingEntity.maxFallDistance() as int;myLivingEntity.maxFallDistance();
Return Type:
int
// LivingEntity.maxHealth as floatmyLivingEntity.maxHealth
Return Type:
float
Returns: The maximum health.
// LivingEntity.maxHealth() as float;myLivingEntity.maxHealth();
Return Type:
float
myLivingEntity.moveRelative(myFloat, myVec3);
// LivingEntity.moveTo(x as double, y as double, z as double);myLivingEntity.moveTo(myDouble, myDouble, myDouble);
Parameters:
x: double
Type: double
- The x position to move the entity to. y: double
Type: double
- The y position to move the entity to. z: double
Type: double
- The z position to move the entity to. myLivingEntity.moveTo(myBlockPos, myFloat, myFloat);
// LivingEntity.moveTo(x as double, y as double, z as double, yaw as float, pitch as float);myLivingEntity.moveTo(myDouble, myDouble, myDouble, myFloat, myFloat);
Parameters:
x: double
Type: double
- The x position to move the entity to. y: double
Type: double
- The y position to move the entity to. z: double
Type: double
- The z position to move the entity to. yaw: float
Type: float
- The yaw to move the entity to. pitch: float
Type: float
- The pitch to move the entity to. // LivingEntity.noActionTime as intmyLivingEntity.noActionTime
Return Type:
int
Returns: The time since this entity last performed an action.
// LivingEntity.noActionTime() as int;myLivingEntity.noActionTime();
Return Type:
int
// LivingEntity.onGround as boolmyLivingEntity.onGround
Return Type:
bool
// LivingEntity.percentFrozen as floatmyLivingEntity.percentFrozen
Return Type:
float
Returns: The percent the entity is frozen.
// LivingEntity.percentFrozen() as float;myLivingEntity.percentFrozen();
Return Type:
float
// LivingEntity.pistonPushReaction as PushReactionmyLivingEntity.pistonPushReaction
Return Type:
PushReaction
Returns: The piston push reaction of the entity.
myLivingEntity.pistonPushReaction();
Return Type:
PushReaction
myLivingEntity.playSound(mySoundEvent, myFloat, myFloat);
Parameters:
volume: float
Type: float
- The volume of the sound. pitch: float
Type: float
- The pitch of the sound. // LivingEntity.random as RandomSourcemyLivingEntity.random
Return Type:
RandomSource
Returns: The random source for the entity.
myLivingEntity.random();
Return Type:
RandomSource
// LivingEntity.registryName as ResourceLocationmyLivingEntity.registryName
Return Type:
ResourceLocation
Returns: The registry name of the entity.
myLivingEntity.registryName();
Return Type:
ResourceLocation
// LivingEntity.releaseUsingItem();myLivingEntity.releaseUsingItem();
Returns: True if all effects were removed, false otherwise.
// LivingEntity.removeAllEffects() as bool;myLivingEntity.removeAllEffects();
Return Type:
bool
Returns: The removed effect.
myLivingEntity.removeEffectNoUpdate(myMobEffect);
Return Type:
MobEffectInstance
Returns: true if the tag was removed.
// LivingEntity.removeTag(tagName as string) as bool;myLivingEntity.removeTag(myString);
Parameters:
tagName: string
Type: string
- The name of the tag to remove.
Return Type:
bool
// LivingEntity.removeVehicle();myLivingEntity.removeVehicle();
// LivingEntity.scale as floatmyLivingEntity.scale
Return Type:
float
Returns: The scale of the entity.
// LivingEntity.scale() as float;myLivingEntity.scale();
Return Type:
float
// LivingEntity.setAbsorptionAmount(absorption as float);myLivingEntity.setAbsorptionAmount(myFloat);
Parameters:
absorption: float
Type: float
- The absorption amount to set. // LivingEntity.setAirSupply(air as int);myLivingEntity.setAirSupply(myInt);
Parameters:
air: int
Type: int
- The new air supply of the entity. // LivingEntity.setArrowCount(count as int);myLivingEntity.setArrowCount(myInt);
Parameters:
count: int
Type: int
- The number of arrows to set. myLivingEntity.setAttachmentData<T>(myAttachmentType, myT);
Parameters:
type: AttachmentType<T>
Type: AttachmentType<T>
data: T
Type: T
Return Type:
T?
myLivingEntity.setAttachmentData<T>(mySupplier, myT);
Parameters:
type: Supplier<AttachmentType<T>>
Type: Supplier<AttachmentType<T>>
data: T
Type: T
Return Type:
T?
// LivingEntity.setCustomNameVisible(visible as bool);myLivingEntity.setCustomNameVisible(myBool);
Parameters:
visible: bool
Type: bool
- true if the custom name should be visible. // LivingEntity.setDeltaMovement(xDelta as double, yDelta as double, zDelta as double);myLivingEntity.setDeltaMovement(myDouble, myDouble, myDouble);
Parameters:
xDelta: double
Type: double
- The x delta movement to set. yDelta: double
Type: double
- The y delta movement to set. zDelta: double
Type: double
- The z delta movement to set. // LivingEntity.setDiscardFriction(discardFriction as bool);myLivingEntity.setDiscardFriction(myBool);
Parameters:
discardFriction: bool
Type: bool
- True if this entity should discard friction, false otherwise. // LivingEntity.setGlowingTag(glowing as bool);myLivingEntity.setGlowingTag(myBool);
Parameters:
glowing: bool
Type: bool
- true if the entity should be glowing. // LivingEntity.setHealth(health as float);myLivingEntity.setHealth(myFloat);
Parameters:
health: float
Type: float
- The health to set. // LivingEntity.setInvisible(invisible as bool);myLivingEntity.setInvisible(myBool);
Parameters:
invisible: bool
Type: bool
- true if the entity should be invisible. // LivingEntity.setInvulnerable(invulnerable as bool);myLivingEntity.setInvulnerable(myBool);
Parameters:
invulnerable: bool
Type: bool
- true if the entity should be invulnerable. // LivingEntity.setIsInPowderSnow(inPowderSnow as bool);myLivingEntity.setIsInPowderSnow(myBool);
Parameters:
inPowderSnow: bool
Type: bool
- Whether the entity is in powder snow. myLivingEntity.setItemInHand(myInteractionHand, myItemStack);
Parameters:
myLivingEntity.setItemSlot(myEquipmentSlot, myItemStack);
Parameters:
// LivingEntity.setJumping(jumping as bool);myLivingEntity.setJumping(myBool);
Parameters:
jumping: bool
Type: bool
- True if the entity should jump, false otherwise. myLivingEntity.setLastHurtByMob(myLivingEntity);
Parameters:
// LivingEntity.setNoActionTime(idleTime as int);myLivingEntity.setNoActionTime(myInt);
Parameters:
idleTime: int
Type: int
- The time since this entity last performed an action. // LivingEntity.setNoGravity(noGravity as bool);myLivingEntity.setNoGravity(myBool);
Parameters:
noGravity: bool
Type: bool
- The no gravity state to set the entity to. // LivingEntity.setOldPosAndRot();myLivingEntity.setOldPosAndRot();
// LivingEntity.setOnGround(onGround as bool);myLivingEntity.setOnGround(myBool);
Parameters:
onGround: bool
Type: bool
- The on ground state to set the entity to. // LivingEntity.setPortalCooldown();myLivingEntity.setPortalCooldown();
// LivingEntity.setPos(x as double, y as double, z as double);myLivingEntity.setPos(myDouble, myDouble, myDouble);
Parameters:
x: double
Type: double
- The x position to set the entity to. y: double
Type: double
- The y position to set the entity to. z: double
Type: double
- The z position to set the entity to. // LivingEntity.setPosRaw(x as double, y as double, z as double);myLivingEntity.setPosRaw(myDouble, myDouble, myDouble);
Parameters:
x: double
Type: double
- The x coordinate to set the position to. y: double
Type: double
- The y coordinate to set the position to. z: double
Type: double
- The z coordinate to set the position to. myLivingEntity.setRemoved(myRemovalReason);
Parameters:
// LivingEntity.setShiftKeyDown(keyDown as bool);myLivingEntity.setShiftKeyDown(myBool);
Parameters:
keyDown: bool
Type: bool
- true if the shift key is down. // LivingEntity.setSilent(silent as bool);myLivingEntity.setSilent(myBool);
Parameters:
silent: bool
Type: bool
- The silent state to set the entity to. // LivingEntity.setSpeed(speed as float);myLivingEntity.setSpeed(myFloat);
Parameters:
speed: float
Type: float
- The movement speed to set. // LivingEntity.setSprinting(sprinting as bool);myLivingEntity.setSprinting(myBool);
Parameters:
sprinting: bool
Type: bool
- true if the entity should be sprinting. // LivingEntity.setStingerCount(count as int);myLivingEntity.setStingerCount(myInt);
Parameters:
count: int
Type: int
- The number of stingers to set. // LivingEntity.setSwimming(swimming as bool);myLivingEntity.setSwimming(myBool);
Parameters:
swimming: bool
Type: bool
- true if the entity should be swimming. // LivingEntity.setTicksFrozen(ticks as int);myLivingEntity.setTicksFrozen(myInt);
Parameters:
ticks: int
Type: int
- The new number of ticks the entity has been frozen. // LivingEntity.shouldBeSaved as boolmyLivingEntity.shouldBeSaved
Return Type:
bool
Returns: true if the entity should be saved.
// LivingEntity.shouldBeSaved() as bool;myLivingEntity.shouldBeSaved();
Return Type:
bool
// LivingEntity.shouldDiscardFriction as boolmyLivingEntity.shouldDiscardFriction
Return Type:
bool
Returns: True if this entity should discard friction, false otherwise.
// LivingEntity.shouldDiscardFriction() as bool;myLivingEntity.shouldDiscardFriction();
Return Type:
bool
// LivingEntity.shouldInformAdmins as boolmyLivingEntity.shouldInformAdmins
Return Type:
bool
Returns: True if the commands from this source should inform admins, false otherwise.
// LivingEntity.shouldInformAdmins() as bool;myLivingEntity.shouldInformAdmins();
Return Type:
bool
// LivingEntity.shouldShowName as boolmyLivingEntity.shouldShowName
Return Type:
bool
Returns: true if the entity should show its name.
// LivingEntity.shouldShowName() as bool;myLivingEntity.shouldShowName();
Return Type:
bool
// LivingEntity.showVehicleHealth as boolmyLivingEntity.showVehicleHealth
Return Type:
bool
Returns: true if the entity should show vehicle health.
// LivingEntity.showVehicleHealth() as bool;myLivingEntity.showVehicleHealth();
Return Type:
bool
SoundSource
of the entity.// LivingEntity.soundSource as SoundSourcemyLivingEntity.soundSource
Return Type:
SoundSource
SoundSource
of the entity.Returns: The sound source of the entity.
myLivingEntity.soundSource();
Return Type:
SoundSource
// LivingEntity.speed as floatmyLivingEntity.speed
Return Type:
float
Returns: The movement speed of the entity.
// LivingEntity.speed() as float;myLivingEntity.speed();
Return Type:
float
Returns: true if the entity started riding.
myLivingEntity.startRiding(myEntity, myBool);
Parameters:
Return Type:
bool
myLivingEntity.startUsingItem(myInteractionHand);
Parameters:
// LivingEntity.stingerCount as intmyLivingEntity.stingerCount
Return Type:
int
Returns: The stinger count.
// LivingEntity.stingerCount() as int;myLivingEntity.stingerCount();
Return Type:
int
// LivingEntity.stopRiding();myLivingEntity.stopRiding();
// LivingEntity.stopSleeping();myLivingEntity.stopSleeping();
// LivingEntity.stopUsingItem();myLivingEntity.stopUsingItem();
// LivingEntity.stringUUID as stringmyLivingEntity.stringUUID
Return Type:
string
Returns: The UUID of the entity as a string.
// LivingEntity.stringUUID() as string;myLivingEntity.stringUUID();
Return Type:
string
myLivingEntity.swing(myInteractionHand);
Parameters:
myLivingEntity.swing(myInteractionHand, myBool);
Parameters:
updateSelf: bool
Type: bool
- Whether to update the entity's self. These tags are arbitrary strings that can be attached to an entity. A single entity is limited to 1024.
// LivingEntity.tags as Set<string>myLivingEntity.tags
Return Type:
Set<string>
These tags are arbitrary strings that can be attached to an entity. A single entity is limited to 1024.
Returns: The tags of the entity.
// LivingEntity.tags() as Set<string>;myLivingEntity.tags();
Return Type:
Set<string>
// LivingEntity.teamColor as intmyLivingEntity.teamColor
Return Type:
int
Returns: The team color of the entity.
// LivingEntity.teamColor() as int;myLivingEntity.teamColor();
Return Type:
int
// LivingEntity.teleportTo(x as double, y as double, z as double);myLivingEntity.teleportTo(myDouble, myDouble, myDouble);
Parameters:
x: double
Type: double
- The x coordinate to teleport to. y: double
Type: double
- The y coordinate to teleport to. z: double
Type: double
- The z coordinate to teleport to. // LivingEntity.ticksFrozen as intmyLivingEntity.ticksFrozen
Return Type:
int
Returns: The number of ticks the entity has been frozen.
// LivingEntity.ticksFrozen() as int;myLivingEntity.ticksFrozen();
Return Type:
int
// LivingEntity.ticksRequiredToFreeze as intmyLivingEntity.ticksRequiredToFreeze
Return Type:
int
Returns: The number of ticks required to freeze the entity.
// LivingEntity.ticksRequiredToFreeze() as int;myLivingEntity.ticksRequiredToFreeze();
Return Type:
int
// LivingEntity.ticksUsingItem as intmyLivingEntity.ticksUsingItem
Return Type:
int
Returns: The ticks that the entity has been using an item.
// LivingEntity.ticksUsingItem() as int;myLivingEntity.ticksUsingItem();
Return Type:
int
// LivingEntity.turn(yaw as double, pitch as double);myLivingEntity.turn(myDouble, myDouble);
Parameters:
yaw: double
Type: double
- The yaw to turn the entity to. pitch: double
Type: double
- The pitch to turn the entity to. EntityType
of the entity.Returns: The EntityType
of the entity.
myLivingEntity.type();
Return Type:
EntityType<Entity>
// LivingEntity.unRide();myLivingEntity.unRide();
// LivingEntity.usedItemHand as InteractionHandmyLivingEntity.usedItemHand
Return Type:
InteractionHand
Returns: The hand that the entity is using an item with.
myLivingEntity.usedItemHand();
Return Type:
InteractionHand
// LivingEntity.useItemRemainingTicks as intmyLivingEntity.useItemRemainingTicks
Return Type:
int
Returns: The remaining ticks for the item that the entity is using.
// LivingEntity.useItemRemainingTicks() as int;myLivingEntity.useItemRemainingTicks();
Return Type:
int
// LivingEntity.uuid as UUIDmyLivingEntity.uuid
Return Type:
UUID
Returns: The UUID of the entity.
// LivingEntity.uuid() as UUID;myLivingEntity.uuid();
Return Type:
UUID
// LivingEntity.voicePitch as floatmyLivingEntity.voicePitch
Return Type:
float
Returns: The voice pitch.
// LivingEntity.voicePitch() as float;myLivingEntity.voicePitch();
Return Type:
float
// LivingEntity.x as doublemyLivingEntity.x
Return Type:
double
Returns: The x coordinate of the entity.
// LivingEntity.x() as double;myLivingEntity.x();
Return Type:
double
// LivingEntity.y as doublemyLivingEntity.y
Return Type:
double
Returns: The y coordinate of the entity.
// LivingEntity.y() as double;myLivingEntity.y();
Return Type:
double
// LivingEntity.z as doublemyLivingEntity.z
Return Type:
double
Returns: The z coordinate of the entity.
// LivingEntity.z() as double;myLivingEntity.z();
Return Type:
double