Importare la Classe

Link to importare-la-classe

It might be required for you to import the package if you encounter any issues (like casting an Array), so better be safe than sorry and add the import at the very top of the file.

ZenScript
Copy
import crafttweaker.api.entity.LivingEntity;

Extending Entity

Link to extending-entity

LivingEntity extends Entity. That means all methods available in Entity are also available in LivingEntity

Name: addEffect

Return Type: boolean

ZenScript
Copy
LivingEntity.addEffect(effectInstance as MobEffectInstance) as boolean
ParametroTipoDescrizione
Parametro
effectInstance
Tipo
MobEffectInstance
Descrizione
No Description Provided

Name: addEffect

Return Type: boolean

ZenScript
Copy
LivingEntity.addEffect(effectInstance as MobEffectInstance, entity as Entity) as boolean
ParametroTipoDescrizione
Parametro
effectInstance
Tipo
MobEffectInstance
Descrizione
No Description Provided
Parametro
entity
Tipo
Entity
Descrizione
No Description Provided

Name: attackable

Return Type: boolean

ZenScript
Copy
// LivingEntity.attackable() as boolean

myLivingEntity.attackable();

Name: canAttack

Return Type: boolean

ZenScript
Copy
LivingEntity.canAttack(target as LivingEntity) as boolean
ParametroTipoDescrizione
Parametro
target
Tipo
LivingEntity
Descrizione
No Description Provided

Name: canBeAffected

Return Type: boolean

ZenScript
Copy
LivingEntity.canBeAffected(effectInstance as MobEffectInstance) as boolean
ParametroTipoDescrizione
Parametro
effectInstance
Tipo
MobEffectInstance
Descrizione
No Description Provided

Link to canBeSeenAsEnemy

Name: canBeSeenAsEnemy

Return Type: boolean

ZenScript
Copy
// LivingEntity.canBeSeenAsEnemy() as boolean

myLivingEntity.canBeSeenAsEnemy();

Link to canBeSeenByAnyone

Name: canBeSeenByAnyone

Return Type: boolean

ZenScript
Copy
// LivingEntity.canBeSeenByAnyone() as boolean

myLivingEntity.canBeSeenByAnyone();

Link to canBreatheUnderwater

Name: canBreatheUnderwater

Return Type: boolean

ZenScript
Copy
// LivingEntity.canBreatheUnderwater() as boolean

myLivingEntity.canBreatheUnderwater();

Link to canSpawnSoulSpeedParticle

Name: canSpawnSoulSpeedParticle

Return Type: boolean

ZenScript
Copy
// LivingEntity.canSpawnSoulSpeedParticle() as boolean

myLivingEntity.canSpawnSoulSpeedParticle();

Name: canStandOnFluid

Return Type: boolean

ZenScript
Copy
LivingEntity.canStandOnFluid(fluid as Fluid) as boolean
ParametroTipoDescrizione
Parametro
fluid
Tipo
Fluid
Descrizione
No Description Provided

Name: canTakeItem

Return Type: boolean

ZenScript
Copy
LivingEntity.canTakeItem(stack as ItemStack) as boolean
ParametroTipoDescrizione
Parametro
stack
Tipo
ItemStack
Descrizione
No Description Provided

Link to clearSleepingPos

Name: clearSleepingPos

Return Type: void

ZenScript
Copy
// LivingEntity.clearSleepingPos() as void

myLivingEntity.clearSleepingPos();

Name: die

Return Type: void

ZenScript
Copy
LivingEntity.die(source as DamageSource) as void
ParametroTipoDescrizione
Parametro
sorgente
Tipo
DamageSource
Descrizione
No Description Provided

Name: doHurtTarget

Return Type: boolean

ZenScript
Copy
LivingEntity.doHurtTarget(entity as Entity) as boolean
ParametroTipoDescrizione
Parametro
entity
Tipo
Entity
Descrizione
No Description Provided

Name: eat

Return Type: ItemStack

ZenScript
Copy
LivingEntity.eat(level as Level, stack as ItemStack) as ItemStack
ParametroTipoDescrizione
Parametro
level
Tipo
Level
Descrizione
No Description Provided
Parametro
stack
Tipo
ItemStack
Descrizione
No Description Provided

Name: forceAddEffect

Return Type: void

ZenScript
Copy
LivingEntity.forceAddEffect(effectInstance as MobEffectInstance, entity as Entity) as void
ParametroTipoDescrizione
Parametro
effectInstance
Tipo
MobEffectInstance
Descrizione
No Description Provided
Parametro
entity
Tipo
Entity
Descrizione
No Description Provided

Link to getAbsorptionAmount

Name: getAbsorptionAmount

Return Type: float

ZenScript
Copy
// LivingEntity.getAbsorptionAmount() as float

myLivingEntity.getAbsorptionAmount();

Link to getActiveEffects

Name: getActiveEffects

Return Type: Collection<MobEffectInstance>

ZenScript
Copy
// LivingEntity.getActiveEffects() as Collection<MobEffectInstance>

myLivingEntity.getActiveEffects();

Link to getActiveEffectsMap

Name: getActiveEffectsMap

Return Type: MobEffectInstance[MobEffect]

ZenScript
Copy
// LivingEntity.getActiveEffectsMap() as MobEffectInstance[MobEffect]

myLivingEntity.getActiveEffectsMap();

Link to getArmorCoverPercentage

Name: getArmorCoverPercentage

Return Type: float

ZenScript
Copy
// LivingEntity.getArmorCoverPercentage() as float

myLivingEntity.getArmorCoverPercentage();

Name: getArmorValue

Return Type: int

ZenScript
Copy
// LivingEntity.getArmorValue() as int

myLivingEntity.getArmorValue();

Name: getArrowCount

Return Type: int

ZenScript
Copy
// LivingEntity.getArrowCount() as int

myLivingEntity.getArrowCount();

Name: getAttribute

Return Type: AttributeInstance

ZenScript
Copy
LivingEntity.getAttribute(attribute as Attribute) as AttributeInstance
ParametroTipoDescrizione
Parametro
attribute
Tipo
Attribute
Descrizione
No Description Provided

Link to getAttributeBaseValue

Name: getAttributeBaseValue

Return Type: double

ZenScript
Copy
LivingEntity.getAttributeBaseValue(attribute as Attribute) as double
ParametroTipoDescrizione
Parametro
attribute
Tipo
Attribute
Descrizione
No Description Provided

Link to getAttributeValue

Name: getAttributeValue

Return Type: double

ZenScript
Copy
LivingEntity.getAttributeValue(attribute as Attribute) as double
ParametroTipoDescrizione
Parametro
attribute
Tipo
Attribute
Descrizione
No Description Provided

Link to getBedOrientation

Name: getBedOrientation

Return Type: Direction

ZenScript
Copy
// LivingEntity.getBedOrientation() as Direction

myLivingEntity.getBedOrientation();

Name: getEffect

Return Type: MobEffectInstance

ZenScript
Copy
LivingEntity.getEffect(effect as MobEffect) as MobEffectInstance
ParametroTipoDescrizione
Parametro
effect
Tipo
MobEffect
Descrizione
No Description Provided

Link to getFallFlyingTicks

Name: getFallFlyingTicks

Return Type: int

ZenScript
Copy
// LivingEntity.getFallFlyingTicks() as int

myLivingEntity.getFallFlyingTicks();

Name: getHealth

Return Type: float

ZenScript
Copy
// LivingEntity.getHealth() as float

myLivingEntity.getHealth();

Name: getItemBySlot

Return Type: ItemStack

ZenScript
Copy
LivingEntity.getItemBySlot(slot as EquipmentSlot) as ItemStack
ParametroTipoDescrizione
Parametro
slot
Tipo
EquipmentSlot
Descrizione
No Description Provided

Name: getItemInHand

Return Type: ItemStack

ZenScript
Copy
LivingEntity.getItemInHand(hand as InteractionHand) as ItemStack
ParametroTipoDescrizione
Parametro
hand
Tipo
InteractionHand
Descrizione
No Description Provided

Link to getJumpBoostPower

Name: getJumpBoostPower

Return Type: double

ZenScript
Copy
// LivingEntity.getJumpBoostPower() as double

myLivingEntity.getJumpBoostPower();

Name: getKillCredit

Return Type: LivingEntity

ZenScript
Copy
// LivingEntity.getKillCredit() as LivingEntity

myLivingEntity.getKillCredit();

Link to getLastClimbablePos

Name: getLastClimbablePos

Return Type: BlockPos

ZenScript
Copy
// LivingEntity.getLastClimbablePos() as BlockPos

myLivingEntity.getLastClimbablePos();

Link to getLastDamageSource

Name: getLastDamageSource

Return Type: DamageSource

ZenScript
Copy
// LivingEntity.getLastDamageSource() as DamageSource

myLivingEntity.getLastDamageSource();

Link to getLastHurtByMob

Name: getLastHurtByMob

Return Type: LivingEntity

ZenScript
Copy
// LivingEntity.getLastHurtByMob() as LivingEntity

myLivingEntity.getLastHurtByMob();

Link to getLastHurtByMobTimestamp

Name: getLastHurtByMobTimestamp

Return Type: int

ZenScript
Copy
// LivingEntity.getLastHurtByMobTimestamp() as int

myLivingEntity.getLastHurtByMobTimestamp();

Name: getLastHurtMob

Return Type: LivingEntity

ZenScript
Copy
// LivingEntity.getLastHurtMob() as LivingEntity

myLivingEntity.getLastHurtMob();

Link to getLastHurtMobTimestamp

Name: getLastHurtMobTimestamp

Return Type: int

ZenScript
Copy
// LivingEntity.getLastHurtMobTimestamp() as int

myLivingEntity.getLastHurtMobTimestamp();

Name: getLootTable

Return Type: ResourceLocation

ZenScript
Copy
// LivingEntity.getLootTable() as ResourceLocation

myLivingEntity.getLootTable();

Name: getMainArm

Return Type: HumanoidArm

ZenScript
Copy
// LivingEntity.getMainArm() as HumanoidArm

myLivingEntity.getMainArm();

Name: getMainHandItem

Return Type: ItemStack

ZenScript
Copy
// LivingEntity.getMainHandItem() as ItemStack

myLivingEntity.getMainHandItem();

Name: getMaxHealth

Return Type: float

ZenScript
Copy
// LivingEntity.getMaxHealth() as float

myLivingEntity.getMaxHealth();

Name: getMobType

Return Type: MobType

ZenScript
Copy
// LivingEntity.getMobType() as MobType

myLivingEntity.getMobType();

Name: getNoActionTime

Return Type: int

ZenScript
Copy
// LivingEntity.getNoActionTime() as int

myLivingEntity.getNoActionTime();

Name: getOffhandItem

Return Type: ItemStack

ZenScript
Copy
// LivingEntity.getOffhandItem() as ItemStack

myLivingEntity.getOffhandItem();

Name: getRandom

Return Type: Random

ZenScript
Copy
// LivingEntity.getRandom() as Random

myLivingEntity.getRandom();

Name: getScale

Return Type: float

ZenScript
Copy
// LivingEntity.getScale() as float

myLivingEntity.getScale();

Name: getSleepingPos

Return Type: BlockPos

ZenScript
Copy
// LivingEntity.getSleepingPos() as BlockPos

myLivingEntity.getSleepingPos();

Name: getSpeed

Return Type: float

ZenScript
Copy
// LivingEntity.getSpeed() as float

myLivingEntity.getSpeed();

Name: getStingerCount

Return Type: int

ZenScript
Copy
// LivingEntity.getStingerCount() as int

myLivingEntity.getStingerCount();

Name: getSwimAmount

Return Type: float

ZenScript
Copy
LivingEntity.getSwimAmount(partialTicks as float) as float
ParametroTipoDescrizione
Parametro
partialTicks
Tipo
float
Descrizione
No Description Provided

Link to getTicksUsingItem

Name: getTicksUsingItem

Return Type: int

ZenScript
Copy
// LivingEntity.getTicksUsingItem() as int

myLivingEntity.getTicksUsingItem();

Name: getUseItem

Return Type: ItemStack

ZenScript
Copy
// LivingEntity.getUseItem() as ItemStack

myLivingEntity.getUseItem();

Link to getUseItemRemainingTicks

Name: getUseItemRemainingTicks

Return Type: int

ZenScript
Copy
// LivingEntity.getUseItemRemainingTicks() as int

myLivingEntity.getUseItemRemainingTicks();

Name: getUsedItemHand

Return Type: InteractionHand

ZenScript
Copy
// LivingEntity.getUsedItemHand() as InteractionHand

myLivingEntity.getUsedItemHand();

Link to getVisibilityPercent

Name: getVisibilityPercent

Return Type: double

ZenScript
Copy
LivingEntity.getVisibilityPercent(lookingEntity as Entity) as double
ParametroTipoDescrizione
Parametro
lookingEntity
Tipo
Entity
Descrizione
No Description Provided

Name: getVoicePitch

Return Type: float

ZenScript
Copy
// LivingEntity.getVoicePitch() as float

myLivingEntity.getVoicePitch();

Name: hasEffect

Return Type: boolean

ZenScript
Copy
LivingEntity.hasEffect(effect as MobEffect) as boolean
ParametroTipoDescrizione
Parametro
effect
Tipo
MobEffect
Descrizione
No Description Provided

Name: hasItemInSlot

Return Type: boolean

ZenScript
Copy
LivingEntity.hasItemInSlot(slot as EquipmentSlot) as boolean
ParametroTipoDescrizione
Parametro
slot
Tipo
EquipmentSlot
Descrizione
No Description Provided

Name: hasLineOfSight

Return Type: boolean

ZenScript
Copy
LivingEntity.hasLineOfSight(entity as Entity) as boolean
ParametroTipoDescrizione
Parametro
entity
Tipo
Entity
Descrizione
No Description Provided

Name: heal

Return Type: void

ZenScript
Copy
LivingEntity.heal(amount as float) as void
ParametroTipoDescrizione
Parametro
amount
Tipo
float
Descrizione
No Description Provided

Link to isAffectedByPotions

Name: isAffectedByPotions

Return Type: boolean

ZenScript
Copy
// LivingEntity.isAffectedByPotions() as boolean

myLivingEntity.isAffectedByPotions();

Link to isAutoSpinAttack

Name: isAutoSpinAttack

Return Type: boolean

ZenScript
Copy
// LivingEntity.isAutoSpinAttack() as boolean

myLivingEntity.isAutoSpinAttack();

Name: isBaby

Return Type: boolean

ZenScript
Copy
// LivingEntity.isBaby() as boolean

myLivingEntity.isBaby();

Name: isBlocking

Return Type: boolean

ZenScript
Copy
// LivingEntity.isBlocking() as boolean

myLivingEntity.isBlocking();

Link to isCurrentlyGlowing

Name: isCurrentlyGlowing

Return Type: boolean

ZenScript
Copy
// LivingEntity.isCurrentlyGlowing() as boolean

myLivingEntity.isCurrentlyGlowing();

Link to isDamageSourceBlocked

Name: isDamageSourceBlocked

Return Type: boolean

ZenScript
Copy
LivingEntity.isDamageSourceBlocked(source as DamageSource) as boolean
ParametroTipoDescrizione
Parametro
sorgente
Tipo
DamageSource
Descrizione
No Description Provided

Name: isDeadOrDying

Return Type: boolean

ZenScript
Copy
// LivingEntity.isDeadOrDying() as boolean

myLivingEntity.isDeadOrDying();

Name: isFallFlying

Return Type: boolean

ZenScript
Copy
// LivingEntity.isFallFlying() as boolean

myLivingEntity.isFallFlying();

Name: isHolding

Return Type: boolean

ZenScript
Copy
LivingEntity.isHolding(item as ItemDefinition) as boolean
ParametroTipoDescrizione
Parametro
item
Tipo
ItemDefinition
Descrizione
No Description Provided

Name: isHolding

Return Type: boolean

ZenScript
Copy
LivingEntity.isHolding(predicate as Predicate<ItemStack>) as boolean
ParametroTipoDescrizione
Parametro
predicate
Tipo
Predicate<ItemStack>
Descrizione
No Description Provided

Link to isInvertedHealAndHarm

Name: isInvertedHealAndHarm

Return Type: boolean

ZenScript
Copy
// LivingEntity.isInvertedHealAndHarm() as boolean

myLivingEntity.isInvertedHealAndHarm();

Link to isSensitiveToWater

Name: isSensitiveToWater

Return Type: boolean

ZenScript
Copy
// LivingEntity.isSensitiveToWater() as boolean

myLivingEntity.isSensitiveToWater();

Name: isSleeping

Return Type: boolean

ZenScript
Copy
// LivingEntity.isSleeping() as boolean

myLivingEntity.isSleeping();

Link to isSuppressingSlidingDownLadder

Name: isSuppressingSlidingDownLadder

Return Type: boolean

ZenScript
Copy
// LivingEntity.isSuppressingSlidingDownLadder() as boolean

myLivingEntity.isSuppressingSlidingDownLadder();

Name: isUsingItem

Return Type: boolean

ZenScript
Copy
// LivingEntity.isUsingItem() as boolean

myLivingEntity.isUsingItem();

Link to isVisuallySwimming

Name: isVisuallySwimming

Return Type: boolean

ZenScript
Copy
// LivingEntity.isVisuallySwimming() as boolean

myLivingEntity.isVisuallySwimming();

Name: knockback

Return Type: void

ZenScript
Copy
LivingEntity.knockback(x as double, y as double, z as double) as void
ParametroTipoDescrizione
Parametro
x
Tipo
double
Descrizione
No Description Provided
Parametro
y
Tipo
double
Descrizione
No Description Provided
Parametro
z
Tipo
double
Descrizione
No Description Provided

Link to releaseUsingItem

Name: releaseUsingItem

Return Type: void

ZenScript
Copy
// LivingEntity.releaseUsingItem() as void

myLivingEntity.releaseUsingItem();

Link to removeAllEffects

Name: removeAllEffects

Return Type: boolean

ZenScript
Copy
// LivingEntity.removeAllEffects() as boolean

myLivingEntity.removeAllEffects();

Name: removeEffect

Return Type: boolean

ZenScript
Copy
LivingEntity.removeEffect(effect as MobEffect) as boolean
ParametroTipoDescrizione
Parametro
effect
Tipo
MobEffect
Descrizione
No Description Provided

Link to removeEffectNoUpdate

Name: removeEffectNoUpdate

Return Type: MobEffectInstance

ZenScript
Copy
LivingEntity.removeEffectNoUpdate(effect as MobEffect) as MobEffectInstance
ParametroTipoDescrizione
Parametro
effect
Tipo
MobEffect
Descrizione
No Description Provided

Link to setAbsorptionAmount

Name: setAbsorptionAmount

Return Type: void

ZenScript
Copy
LivingEntity.setAbsorptionAmount(absorption as float) as void
ParametroTipoDescrizione
Parametro
absorption
Tipo
float
Descrizione
No Description Provided

Name: setArrowCount

Return Type: void

ZenScript
Copy
LivingEntity.setArrowCount(count as int) as void
ParametroTipoDescrizione
Parametro
count
Tipo
int
Descrizione
No Description Provided

Link to setDiscardFriction

Name: setDiscardFriction

Return Type: void

ZenScript
Copy
LivingEntity.setDiscardFriction(discardFriction as boolean) as void
ParametroTipoDescrizione
Parametro
discardFriction
Tipo
boolean
Descrizione
No Description Provided

Name: setHealth

Return Type: void

ZenScript
Copy
LivingEntity.setHealth(health as float) as void
ParametroTipoDescrizione
Parametro
health
Tipo
float
Descrizione
No Description Provided

Name: setItemInHand

Return Type: void

ZenScript
Copy
LivingEntity.setItemInHand(hand as InteractionHand, stack as ItemStack) as void
ParametroTipoDescrizione
Parametro
hand
Tipo
InteractionHand
Descrizione
No Description Provided
Parametro
stack
Tipo
ItemStack
Descrizione
No Description Provided

Name: setJumping

Return Type: void

ZenScript
Copy
LivingEntity.setJumping(jumping as boolean) as void
ParametroTipoDescrizione
Parametro
jumping
Tipo
boolean
Descrizione
No Description Provided

Link to setLastHurtByMob

Name: setLastHurtByMob

Return Type: void

ZenScript
Copy
LivingEntity.setLastHurtByMob(entity as LivingEntity) as void
ParametroTipoDescrizione
Parametro
entity
Tipo
LivingEntity
Descrizione
No Description Provided

Link to setLastHurtByPlayer

Name: setLastHurtByPlayer

Return Type: void

ZenScript
Copy
LivingEntity.setLastHurtByPlayer(player as Player) as void
ParametroTipoDescrizione
Parametro
player
Tipo
Player
Descrizione
No Description Provided

Name: setLastHurtMob

Return Type: void

ZenScript
Copy
LivingEntity.setLastHurtMob(entity as Entity) as void
ParametroTipoDescrizione
Parametro
entity
Tipo
Entity
Descrizione
No Description Provided

Name: setNoActionTime

Return Type: void

ZenScript
Copy
LivingEntity.setNoActionTime(idleTime as int) as void
ParametroTipoDescrizione
Parametro
idleTime
Tipo
int
Descrizione
No Description Provided

Name: setSleepingPos

Return Type: void

ZenScript
Copy
LivingEntity.setSleepingPos(pos as BlockPos) as void
ParametroTipoDescrizione
Parametro
pos
Tipo
BlockPos
Descrizione
No Description Provided

Name: setSpeed

Return Type: void

ZenScript
Copy
LivingEntity.setSpeed(speed as float) as void
ParametroTipoDescrizione
Parametro
speed
Tipo
float
Descrizione
No Description Provided

Name: setStingerCount

Return Type: void

ZenScript
Copy
LivingEntity.setStingerCount(count as int) as void
ParametroTipoDescrizione
Parametro
count
Tipo
int
Descrizione
No Description Provided

Link to shouldDiscardFriction

Name: shouldDiscardFriction

Return Type: boolean

ZenScript
Copy
// LivingEntity.shouldDiscardFriction() as boolean

myLivingEntity.shouldDiscardFriction();

Link to startAutoSpinAttack

Name: startAutoSpinAttack

Return Type: void

ZenScript
Copy
LivingEntity.startAutoSpinAttack(ticks as int) as void
ParametroTipoDescrizione
Parametro
ticks
Tipo
int
Descrizione
No Description Provided

Name: startSleeping

Return Type: void

ZenScript
Copy
LivingEntity.startSleeping(pos as BlockPos) as void
ParametroTipoDescrizione
Parametro
pos
Tipo
BlockPos
Descrizione
No Description Provided

Name: startUsingItem

Return Type: void

ZenScript
Copy
LivingEntity.startUsingItem(param0 as InteractionHand) as void
ParametroTipoDescrizione
Parametro
param0
Tipo
InteractionHand
Descrizione
No Description Provided

Name: stopSleeping

Return Type: void

ZenScript
Copy
// LivingEntity.stopSleeping() as void

myLivingEntity.stopSleeping();

Name: stopUsingItem

Return Type: void

ZenScript
Copy
// LivingEntity.stopUsingItem() as void

myLivingEntity.stopUsingItem();

Name: swing

Return Type: void

ZenScript
Copy
LivingEntity.swing(hand as InteractionHand) as void
ParametroTipoDescrizione
Parametro
hand
Tipo
InteractionHand
Descrizione
No Description Provided

Name: swing

Return Type: void

ZenScript
Copy
LivingEntity.swing(hand as InteractionHand, updateSelf as boolean) as void
ParametroTipoDescrizione
Parametro
hand
Tipo
InteractionHand
Descrizione
No Description Provided
Parametro
updateSelf
Tipo
boolean
Descrizione
No Description Provided

Name: travel

Return Type: void

ZenScript
Copy
LivingEntity.travel(vec as Vec3) as void
ParametroTipoDescrizione
Parametro
vec
Tipo
Vec3
Descrizione
No Description Provided
NomeTipoHa GetterHa SetterDescrizione
Nome
absorptionAmount
Tipo
float
Ha Getter
Ha Setter
no
Descrizione
No Description Provided
Nome
activeEFfectsMap
Tipo
MobEffectInstance[MobEffect]
Ha Getter
Ha Setter
no
Descrizione
No Description Provided
Nome
activeEffects
Tipo
Collection<MobEffectInstance>
Ha Getter
Ha Setter
no
Descrizione
No Description Provided
Nome
armorCoverPercentage
Tipo
float
Ha Getter
Ha Setter
no
Descrizione
No Description Provided
Nome
armorValue
Tipo
int
Ha Getter
Ha Setter
no
Descrizione
No Description Provided
Nome
arrowCount
Tipo
int
Ha Getter
Ha Setter
no
Descrizione
No Description Provided
Nome
attackable
Tipo
boolean
Ha Getter
Ha Setter
no
Descrizione
No Description Provided
Nome
bedOrientation
Tipo
Direction
Ha Getter
Ha Setter
no
Descrizione
No Description Provided
Nome
canBeSeenAsEnemy
Tipo
boolean
Ha Getter
Ha Setter
no
Descrizione
No Description Provided
Nome
canBeSeenByAnyone
Tipo
boolean
Ha Getter
Ha Setter
no
Descrizione
No Description Provided
Nome
canBreatheUnderwater
Tipo
boolean
Ha Getter
Ha Setter
no
Descrizione
No Description Provided
Nome
fallFlyingTicks
Tipo
int
Ha Getter
Ha Setter
no
Descrizione
No Description Provided
Nome
health
Tipo
float
Ha Getter
Ha Setter
no
Descrizione
No Description Provided
Nome
isAffectedByPotions
Tipo
boolean
Ha Getter
Ha Setter
no
Descrizione
No Description Provided
Nome
isAutoSpinAttack
Tipo
boolean
Ha Getter
Ha Setter
no
Descrizione
No Description Provided
Nome
isBaby
Tipo
boolean
Ha Getter
Ha Setter
no
Descrizione
No Description Provided
Nome
isBlocking
Tipo
boolean
Ha Getter
Ha Setter
no
Descrizione
No Description Provided
Nome
isCurrentlyGlowing
Tipo
boolean
Ha Getter
Ha Setter
no
Descrizione
No Description Provided
Nome
isDeadOrDying
Tipo
boolean
Ha Getter
Ha Setter
no
Descrizione
No Description Provided
Nome
isFallFlying
Tipo
boolean
Ha Getter
Ha Setter
no
Descrizione
No Description Provided
Nome
isInvertedHealAndHarm
Tipo
boolean
Ha Getter
Ha Setter
no
Descrizione
No Description Provided
Nome
isSensitiveToWater
Tipo
boolean
Ha Getter
Ha Setter
no
Descrizione
No Description Provided
Nome
isSleeping
Tipo
boolean
Ha Getter
Ha Setter
no
Descrizione
No Description Provided
Nome
isSuppressingSlidingDownLadder
Tipo
boolean
Ha Getter
Ha Setter
no
Descrizione
No Description Provided
Nome
isUsingItem
Tipo
boolean
Ha Getter
Ha Setter
no
Descrizione
No Description Provided
Nome
isVisuallySwimming
Tipo
boolean
Ha Getter
Ha Setter
no
Descrizione
No Description Provided
Nome
jumpBoostPower
Tipo
double
Ha Getter
Ha Setter
no
Descrizione
No Description Provided
Nome
killCredit
Tipo
LivingEntity
Ha Getter
Ha Setter
no
Descrizione
No Description Provided
Nome
lastClimbablePos
Tipo
BlockPos
Ha Getter
Ha Setter
no
Descrizione
No Description Provided
Nome
lastDamageSource
Tipo
DamageSource
Ha Getter
Ha Setter
no
Descrizione
No Description Provided
Nome
lastHurtByMob
Tipo
LivingEntity
Ha Getter
Ha Setter
no
Descrizione
No Description Provided
Nome
lastHurtByMobTimestamp
Tipo
int
Ha Getter
Ha Setter
no
Descrizione
No Description Provided
Nome
lastHurtMob
Tipo
LivingEntity
Ha Getter
Ha Setter
no
Descrizione
No Description Provided
Nome
lastHurtMobTimestamp
Tipo
int
Ha Getter
Ha Setter
no
Descrizione
No Description Provided
Nome
lootTable
Tipo
ResourceLocation
Ha Getter
Ha Setter
no
Descrizione
No Description Provided
Nome
mainArm
Tipo
HumanoidArm
Ha Getter
Ha Setter
no
Descrizione
No Description Provided
Nome
mainHandItem
Tipo
ItemStack
Ha Getter
Ha Setter
no
Descrizione
No Description Provided
Nome
maxHealth
Tipo
float
Ha Getter
Ha Setter
no
Descrizione
No Description Provided
Nome
mobType
Tipo
MobType
Ha Getter
Ha Setter
no
Descrizione
No Description Provided
Nome
noActionTime
Tipo
int
Ha Getter
Ha Setter
no
Descrizione
No Description Provided
Nome
offHandItem
Tipo
ItemStack
Ha Getter
Ha Setter
no
Descrizione
No Description Provided
Nome
random
Tipo
Random
Ha Getter
Ha Setter
no
Descrizione
No Description Provided
Nome
scale
Tipo
float
Ha Getter
Ha Setter
no
Descrizione
No Description Provided
Nome
shouldDiscardFriction
Tipo
boolean
Ha Getter
Ha Setter
no
Descrizione
No Description Provided
Nome
sleepingPos
Tipo
BlockPos
Ha Getter
Ha Setter
no
Descrizione
No Description Provided
Nome
speed
Tipo
float
Ha Getter
Ha Setter
no
Descrizione
No Description Provided
Nome
stingerCount
Tipo
int
Ha Getter
Ha Setter
no
Descrizione
No Description Provided
Nome
ticksUsingItem
Tipo
int
Ha Getter
Ha Setter
no
Descrizione
No Description Provided
Nome
useItem
Tipo
ItemStack
Ha Getter
Ha Setter
no
Descrizione
No Description Provided
Nome
useItemRemainingTicks
Tipo
int
Ha Getter
Ha Setter
no
Descrizione
No Description Provided
Nome
usedItemHand
Tipo
InteractionHand
Ha Getter
Ha Setter
no
Descrizione
No Description Provided
Nome
voicePitch
Tipo
float
Ha Getter
Ha Setter
no
Descrizione
No Description Provided