LivingEntity
Link to livingentity
Importing the class
Link to importing-the-class
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 Copyimport 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
Methods
Link to methods
Name: addEffect
Return Type: boolean
ZenScript CopyLivingEntity.addEffect(effectInstance as MobEffectInstance) as boolean
Parameter | Type | Description |
---|---|---|
Parameter effectInstance | Type MobEffectInstance | Description No Description Provided |
Name: addEffect
Return Type: boolean
ZenScript CopyLivingEntity.addEffect(effectInstance as MobEffectInstance, entity as Entity) as boolean
Parameter | Type | Description |
---|---|---|
Parameter effectInstance | Type MobEffectInstance | Description No Description Provided |
Parameter entity | Type Entity | Description No Description Provided |
Name: attackable
Return Type: boolean
ZenScript Copy// LivingEntity.attackable() as boolean
myLivingEntity.attackable();
Name: canAttack
Return Type: boolean
ZenScript CopyLivingEntity.canAttack(target as LivingEntity) as boolean
Parameter | Type | Description |
---|---|---|
Parameter target | Type LivingEntity | Description No Description Provided |
Name: canBeAffected
Return Type: boolean
ZenScript CopyLivingEntity.canBeAffected(effectInstance as MobEffectInstance) as boolean
Parameter | Type | Description |
---|---|---|
Parameter effectInstance | Type MobEffectInstance | Description No Description Provided |
Name: canBeSeenAsEnemy
Return Type: boolean
ZenScript Copy// LivingEntity.canBeSeenAsEnemy() as boolean
myLivingEntity.canBeSeenAsEnemy();
Name: canBeSeenByAnyone
Return Type: boolean
ZenScript Copy// LivingEntity.canBeSeenByAnyone() as boolean
myLivingEntity.canBeSeenByAnyone();
Name: canBreatheUnderwater
Return Type: boolean
ZenScript Copy// LivingEntity.canBreatheUnderwater() as boolean
myLivingEntity.canBreatheUnderwater();
Name: canSpawnSoulSpeedParticle
Return Type: boolean
ZenScript Copy// LivingEntity.canSpawnSoulSpeedParticle() as boolean
myLivingEntity.canSpawnSoulSpeedParticle();
Name: canStandOnFluid
Return Type: boolean
ZenScript CopyLivingEntity.canStandOnFluid(fluid as Fluid) as boolean
Parameter | Type | Description |
---|---|---|
Parameter fluid | Type Fluid | Description No Description Provided |
Name: canTakeItem
Return Type: boolean
ZenScript CopyLivingEntity.canTakeItem(stack as ItemStack) as boolean
Parameter | Type | Description |
---|---|---|
Parameter stack | Type ItemStack | Description No Description Provided |
Name: clearSleepingPos
Return Type: void
ZenScript Copy// LivingEntity.clearSleepingPos() as void
myLivingEntity.clearSleepingPos();
Name: die
Return Type: void
ZenScript CopyLivingEntity.die(source as DamageSource) as void
Parameter | Type | Description |
---|---|---|
Parameter source | Type DamageSource | Description No Description Provided |
Name: doHurtTarget
Return Type: boolean
ZenScript CopyLivingEntity.doHurtTarget(entity as Entity) as boolean
Parameter | Type | Description |
---|---|---|
Parameter entity | Type Entity | Description No Description Provided |
Name: forceAddEffect
Return Type: void
ZenScript CopyLivingEntity.forceAddEffect(effectInstance as MobEffectInstance, entity as Entity) as void
Parameter | Type | Description |
---|---|---|
Parameter effectInstance | Type MobEffectInstance | Description No Description Provided |
Parameter entity | Type Entity | Description No Description Provided |
Name: getAbsorptionAmount
Return Type: float
ZenScript Copy// LivingEntity.getAbsorptionAmount() as float
myLivingEntity.getAbsorptionAmount();
Name: getActiveEffects
Return Type: Collection<MobEffectInstance>
ZenScript Copy// LivingEntity.getActiveEffects() as Collection<MobEffectInstance>
myLivingEntity.getActiveEffects();
Name: getActiveEffectsMap
Return Type: MobEffectInstance[MobEffect]
ZenScript Copy// LivingEntity.getActiveEffectsMap() as MobEffectInstance[MobEffect]
myLivingEntity.getActiveEffectsMap();
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 CopyLivingEntity.getAttribute(attribute as Attribute) as AttributeInstance
Parameter | Type | Description |
---|---|---|
Parameter attribute | Type Attribute | Description No Description Provided |
Name: getAttributeBaseValue
Return Type: double
ZenScript CopyLivingEntity.getAttributeBaseValue(attribute as Attribute) as double
Parameter | Type | Description |
---|---|---|
Parameter attribute | Type Attribute | Description No Description Provided |
Name: getAttributeValue
Return Type: double
ZenScript CopyLivingEntity.getAttributeValue(attribute as Attribute) as double
Parameter | Type | Description |
---|---|---|
Parameter attribute | Type Attribute | Description No Description Provided |
Name: getBedOrientation
Return Type: Direction
ZenScript Copy// LivingEntity.getBedOrientation() as Direction
myLivingEntity.getBedOrientation();
Name: getEffect
Return Type: MobEffectInstance
ZenScript CopyLivingEntity.getEffect(effect as MobEffect) as MobEffectInstance
Parameter | Type | Description |
---|---|---|
Parameter effect | Type MobEffect | Description No Description Provided |
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 CopyLivingEntity.getItemBySlot(slot as EquipmentSlot) as ItemStack
Parameter | Type | Description |
---|---|---|
Parameter slot | Type EquipmentSlot | Description No Description Provided |
Name: getItemInHand
Return Type: ItemStack
ZenScript CopyLivingEntity.getItemInHand(hand as InteractionHand) as ItemStack
Parameter | Type | Description |
---|---|---|
Parameter hand | Type InteractionHand | Description No Description Provided |
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();
Name: getLastClimbablePos
Return Type: BlockPos
ZenScript Copy// LivingEntity.getLastClimbablePos() as BlockPos
myLivingEntity.getLastClimbablePos();
Name: getLastDamageSource
Return Type: DamageSource
ZenScript Copy// LivingEntity.getLastDamageSource() as DamageSource
myLivingEntity.getLastDamageSource();
Name: getLastHurtByMob
Return Type: LivingEntity
ZenScript Copy// LivingEntity.getLastHurtByMob() as LivingEntity
myLivingEntity.getLastHurtByMob();
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();
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 CopyLivingEntity.getSwimAmount(partialTicks as float) as float
Parameter | Type | Description |
---|---|---|
Parameter partialTicks | Type float | Description No Description Provided |
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();
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();
Name: getVisibilityPercent
Return Type: double
ZenScript CopyLivingEntity.getVisibilityPercent(lookingEntity as Entity) as double
Parameter | Type | Description |
---|---|---|
Parameter lookingEntity | Type Entity | Description No Description Provided |
Name: getVoicePitch
Return Type: float
ZenScript Copy// LivingEntity.getVoicePitch() as float
myLivingEntity.getVoicePitch();
Name: hasEffect
Return Type: boolean
ZenScript CopyLivingEntity.hasEffect(effect as MobEffect) as boolean
Parameter | Type | Description |
---|---|---|
Parameter effect | Type MobEffect | Description No Description Provided |
Name: hasItemInSlot
Return Type: boolean
ZenScript CopyLivingEntity.hasItemInSlot(slot as EquipmentSlot) as boolean
Parameter | Type | Description |
---|---|---|
Parameter slot | Type EquipmentSlot | Description No Description Provided |
Name: hasLineOfSight
Return Type: boolean
ZenScript CopyLivingEntity.hasLineOfSight(entity as Entity) as boolean
Parameter | Type | Description |
---|---|---|
Parameter entity | Type Entity | Description No Description Provided |
Name: heal
Return Type: void
ZenScript CopyLivingEntity.heal(amount as float) as void
Parameter | Type | Description |
---|---|---|
Parameter amount | Type float | Description No Description Provided |
Name: isAffectedByPotions
Return Type: boolean
ZenScript Copy// LivingEntity.isAffectedByPotions() as boolean
myLivingEntity.isAffectedByPotions();
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();
Name: isCurrentlyGlowing
Return Type: boolean
ZenScript Copy// LivingEntity.isCurrentlyGlowing() as boolean
myLivingEntity.isCurrentlyGlowing();
Name: isDamageSourceBlocked
Return Type: boolean
ZenScript CopyLivingEntity.isDamageSourceBlocked(source as DamageSource) as boolean
Parameter | Type | Description |
---|---|---|
Parameter source | Type DamageSource | Description 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 CopyLivingEntity.isHolding(item as ItemDefinition) as boolean
Parameter | Type | Description |
---|---|---|
Parameter item | Type ItemDefinition | Description No Description Provided |
Name: isHolding
Return Type: boolean
ZenScript CopyLivingEntity.isHolding(predicate as Predicate<ItemStack>) as boolean
Parameter | Type | Description |
---|---|---|
Parameter predicate | Type Predicate<ItemStack> | Description No Description Provided |
Name: isInvertedHealAndHarm
Return Type: boolean
ZenScript Copy// LivingEntity.isInvertedHealAndHarm() as boolean
myLivingEntity.isInvertedHealAndHarm();
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();
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();
Name: isVisuallySwimming
Return Type: boolean
ZenScript Copy// LivingEntity.isVisuallySwimming() as boolean
myLivingEntity.isVisuallySwimming();
Name: knockback
Return Type: void
ZenScript CopyLivingEntity.knockback(x as double, y as double, z as double) as void
Parameter | Type | Description |
---|---|---|
Parameter x | Type double | Description No Description Provided |
Parameter y | Type double | Description No Description Provided |
Parameter z | Type double | Description No Description Provided |
Name: releaseUsingItem
Return Type: void
ZenScript Copy// LivingEntity.releaseUsingItem() as void
myLivingEntity.releaseUsingItem();
Name: removeAllEffects
Return Type: boolean
ZenScript Copy// LivingEntity.removeAllEffects() as boolean
myLivingEntity.removeAllEffects();
Name: removeEffect
Return Type: boolean
ZenScript CopyLivingEntity.removeEffect(effect as MobEffect) as boolean
Parameter | Type | Description |
---|---|---|
Parameter effect | Type MobEffect | Description No Description Provided |
Name: removeEffectNoUpdate
Return Type: MobEffectInstance
ZenScript CopyLivingEntity.removeEffectNoUpdate(effect as MobEffect) as MobEffectInstance
Parameter | Type | Description |
---|---|---|
Parameter effect | Type MobEffect | Description No Description Provided |
Name: setAbsorptionAmount
Return Type: void
ZenScript CopyLivingEntity.setAbsorptionAmount(absorption as float) as void
Parameter | Type | Description |
---|---|---|
Parameter absorption | Type float | Description No Description Provided |
Name: setArrowCount
Return Type: void
ZenScript CopyLivingEntity.setArrowCount(count as int) as void
Parameter | Type | Description |
---|---|---|
Parameter count | Type int | Description No Description Provided |
Name: setDiscardFriction
Return Type: void
ZenScript CopyLivingEntity.setDiscardFriction(discardFriction as boolean) as void
Parameter | Type | Description |
---|---|---|
Parameter discardFriction | Type boolean | Description No Description Provided |
Name: setHealth
Return Type: void
ZenScript CopyLivingEntity.setHealth(health as float) as void
Parameter | Type | Description |
---|---|---|
Parameter health | Type float | Description No Description Provided |
Name: setItemInHand
Return Type: void
ZenScript CopyLivingEntity.setItemInHand(hand as InteractionHand, stack as ItemStack) as void
Parameter | Type | Description |
---|---|---|
Parameter hand | Type InteractionHand | Description No Description Provided |
Parameter stack | Type ItemStack | Description No Description Provided |
Name: setJumping
Return Type: void
ZenScript CopyLivingEntity.setJumping(jumping as boolean) as void
Parameter | Type | Description |
---|---|---|
Parameter jumping | Type boolean | Description No Description Provided |
Name: setLastHurtByMob
Return Type: void
ZenScript CopyLivingEntity.setLastHurtByMob(entity as LivingEntity) as void
Parameter | Type | Description |
---|---|---|
Parameter entity | Type LivingEntity | Description No Description Provided |
Name: setLastHurtByPlayer
Return Type: void
ZenScript CopyLivingEntity.setLastHurtByPlayer(player as Player) as void
Parameter | Type | Description |
---|---|---|
Parameter player | Type Player | Description No Description Provided |
Name: setLastHurtMob
Return Type: void
ZenScript CopyLivingEntity.setLastHurtMob(entity as Entity) as void
Parameter | Type | Description |
---|---|---|
Parameter entity | Type Entity | Description No Description Provided |
Name: setNoActionTime
Return Type: void
ZenScript CopyLivingEntity.setNoActionTime(idleTime as int) as void
Parameter | Type | Description |
---|---|---|
Parameter idleTime | Type int | Description No Description Provided |
Name: setSleepingPos
Return Type: void
ZenScript CopyLivingEntity.setSleepingPos(pos as BlockPos) as void
Parameter | Type | Description |
---|---|---|
Parameter pos | Type BlockPos | Description No Description Provided |
Name: setSpeed
Return Type: void
ZenScript CopyLivingEntity.setSpeed(speed as float) as void
Parameter | Type | Description |
---|---|---|
Parameter speed | Type float | Description No Description Provided |
Name: setStingerCount
Return Type: void
ZenScript CopyLivingEntity.setStingerCount(count as int) as void
Parameter | Type | Description |
---|---|---|
Parameter count | Type int | Description No Description Provided |
Name: shouldDiscardFriction
Return Type: boolean
ZenScript Copy// LivingEntity.shouldDiscardFriction() as boolean
myLivingEntity.shouldDiscardFriction();
Name: startAutoSpinAttack
Return Type: void
ZenScript CopyLivingEntity.startAutoSpinAttack(ticks as int) as void
Parameter | Type | Description |
---|---|---|
Parameter ticks | Type int | Description No Description Provided |
Name: startSleeping
Return Type: void
ZenScript CopyLivingEntity.startSleeping(pos as BlockPos) as void
Parameter | Type | Description |
---|---|---|
Parameter pos | Type BlockPos | Description No Description Provided |
Name: startUsingItem
Return Type: void
ZenScript CopyLivingEntity.startUsingItem(param0 as InteractionHand) as void
Parameter | Type | Description |
---|---|---|
Parameter param0 | Type InteractionHand | Description 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 CopyLivingEntity.swing(hand as InteractionHand) as void
Parameter | Type | Description |
---|---|---|
Parameter hand | Type InteractionHand | Description No Description Provided |
Name: swing
Return Type: void
ZenScript CopyLivingEntity.swing(hand as InteractionHand, updateSelf as boolean) as void
Parameter | Type | Description |
---|---|---|
Parameter hand | Type InteractionHand | Description No Description Provided |
Parameter updateSelf | Type boolean | Description No Description Provided |
Name: travel
Return Type: void
ZenScript CopyLivingEntity.travel(vec as Vec3) as void
Parameter | Type | Description |
---|---|---|
Parameter vec | Type Vec3 | Description No Description Provided |
Properties
Link to properties
Name | Type | Has Getter | Has Setter | Description |
---|---|---|---|---|
Name absorptionAmount | Type float | Has Getter true | Has Setter false | Description No Description Provided |
Name activeEFfectsMap | Type MobEffectInstance[MobEffect] | Has Getter true | Has Setter false | Description No Description Provided |
Name activeEffects | Type Collection<MobEffectInstance> | Has Getter true | Has Setter false | Description No Description Provided |
Name armorCoverPercentage | Type float | Has Getter true | Has Setter false | Description No Description Provided |
Name armorValue | Type int | Has Getter true | Has Setter false | Description No Description Provided |
Name arrowCount | Type int | Has Getter true | Has Setter false | Description No Description Provided |
Name attackable | Type boolean | Has Getter true | Has Setter false | Description No Description Provided |
Name bedOrientation | Type Direction | Has Getter true | Has Setter false | Description No Description Provided |
Name canBeSeenAsEnemy | Type boolean | Has Getter true | Has Setter false | Description No Description Provided |
Name canBeSeenByAnyone | Type boolean | Has Getter true | Has Setter false | Description No Description Provided |
Name canBreatheUnderwater | Type boolean | Has Getter true | Has Setter false | Description No Description Provided |
Name fallFlyingTicks | Type int | Has Getter true | Has Setter false | Description No Description Provided |
Name health | Type float | Has Getter true | Has Setter false | Description No Description Provided |
Name isAffectedByPotions | Type boolean | Has Getter true | Has Setter false | Description No Description Provided |
Name isAutoSpinAttack | Type boolean | Has Getter true | Has Setter false | Description No Description Provided |
Name isBaby | Type boolean | Has Getter true | Has Setter false | Description No Description Provided |
Name isBlocking | Type boolean | Has Getter true | Has Setter false | Description No Description Provided |
Name isCurrentlyGlowing | Type boolean | Has Getter true | Has Setter false | Description No Description Provided |
Name isDeadOrDying | Type boolean | Has Getter true | Has Setter false | Description No Description Provided |
Name isFallFlying | Type boolean | Has Getter true | Has Setter false | Description No Description Provided |
Name isInvertedHealAndHarm | Type boolean | Has Getter true | Has Setter false | Description No Description Provided |
Name isSensitiveToWater | Type boolean | Has Getter true | Has Setter false | Description No Description Provided |
Name isSleeping | Type boolean | Has Getter true | Has Setter false | Description No Description Provided |
Name isSuppressingSlidingDownLadder | Type boolean | Has Getter true | Has Setter false | Description No Description Provided |
Name isUsingItem | Type boolean | Has Getter true | Has Setter false | Description No Description Provided |
Name isVisuallySwimming | Type boolean | Has Getter true | Has Setter false | Description No Description Provided |
Name jumpBoostPower | Type double | Has Getter true | Has Setter false | Description No Description Provided |
Name killCredit | Type LivingEntity | Has Getter true | Has Setter false | Description No Description Provided |
Name lastClimbablePos | Type BlockPos | Has Getter true | Has Setter false | Description No Description Provided |
Name lastDamageSource | Type DamageSource | Has Getter true | Has Setter false | Description No Description Provided |
Name lastHurtByMob | Type LivingEntity | Has Getter true | Has Setter false | Description No Description Provided |
Name lastHurtByMobTimestamp | Type int | Has Getter true | Has Setter false | Description No Description Provided |
Name lastHurtMob | Type LivingEntity | Has Getter true | Has Setter false | Description No Description Provided |
Name lastHurtMobTimestamp | Type int | Has Getter true | Has Setter false | Description No Description Provided |
Name lootTable | Type ResourceLocation | Has Getter true | Has Setter false | Description No Description Provided |
Name mainArm | Type HumanoidArm | Has Getter true | Has Setter false | Description No Description Provided |
Name mainHandItem | Type ItemStack | Has Getter true | Has Setter false | Description No Description Provided |
Name maxHealth | Type float | Has Getter true | Has Setter false | Description No Description Provided |
Name mobType | Type MobType | Has Getter true | Has Setter false | Description No Description Provided |
Name noActionTime | Type int | Has Getter true | Has Setter false | Description No Description Provided |
Name offHandItem | Type ItemStack | Has Getter true | Has Setter false | Description No Description Provided |
Name random | Type Random | Has Getter true | Has Setter false | Description No Description Provided |
Name scale | Type float | Has Getter true | Has Setter false | Description No Description Provided |
Name shouldDiscardFriction | Type boolean | Has Getter true | Has Setter false | Description No Description Provided |
Name sleepingPos | Type BlockPos | Has Getter true | Has Setter false | Description No Description Provided |
Name speed | Type float | Has Getter true | Has Setter false | Description No Description Provided |
Name stingerCount | Type int | Has Getter true | Has Setter false | Description No Description Provided |
Name ticksUsingItem | Type int | Has Getter true | Has Setter false | Description No Description Provided |
Name useItem | Type ItemStack | Has Getter true | Has Setter false | Description No Description Provided |
Name useItemRemainingTicks | Type int | Has Getter true | Has Setter false | Description No Description Provided |
Name usedItemHand | Type InteractionHand | Has Getter true | Has Setter false | Description No Description Provided |
Name voicePitch | Type float | Has Getter true | Has Setter false | Description No Description Provided |