Class LlamaEntity

All Implemented Interfaces:
RangedAttackMob, Attackable, DataTracked, JumpingMount, Mount, RideableInventory, Saddleable, Tameable, Targeter, VariantHolder<LlamaEntity.Variant>, InventoryChangedListener, ScoreHolder, CommandOutput, Nameable, EntityLike
Direct Known Subclasses:
TraderLlamaEntity

public class LlamaEntity extends AbstractDonkeyEntity implements VariantHolder<LlamaEntity.Variant>, RangedAttackMob
Mappings:
Namespace Name
official cfw
intermediary net/minecraft/class_1501
named net/minecraft/entity/passive/LlamaEntity
  • Field Details

    • MAX_STRENGTH

      private static final int MAX_STRENGTH
      See Also:
      Mappings:
      Namespace Name Mixin selector
      official bZ Lcfw;bZ:I
      intermediary field_30425 Lnet/minecraft/class_1501;field_30425:I
      named MAX_STRENGTH Lnet/minecraft/entity/passive/LlamaEntity;MAX_STRENGTH:I
    • STRENGTH

      private static final TrackedData<Integer> STRENGTH
      Mappings:
      Namespace Name Mixin selector
      official cb Lcfw;cb:Lajm;
      intermediary field_6998 Lnet/minecraft/class_1501;field_6998:Lnet/minecraft/class_2940;
      named STRENGTH Lnet/minecraft/entity/passive/LlamaEntity;STRENGTH:Lnet/minecraft/entity/data/TrackedData;
    • VARIANT

      private static final TrackedData<Integer> VARIANT
      Mappings:
      Namespace Name Mixin selector
      official cc Lcfw;cc:Lajm;
      intermediary field_6996 Lnet/minecraft/class_1501;field_6996:Lnet/minecraft/class_2940;
      named VARIANT Lnet/minecraft/entity/passive/LlamaEntity;VARIANT:Lnet/minecraft/entity/data/TrackedData;
    • BABY_BASE_DIMENSIONS

      private static final EntityDimensions BABY_BASE_DIMENSIONS
      Mappings:
      Namespace Name Mixin selector
      official cd Lcfw;cd:Lbrk;
      intermediary field_47808 Lnet/minecraft/class_1501;field_47808:Lnet/minecraft/class_4048;
      named BABY_BASE_DIMENSIONS Lnet/minecraft/entity/passive/LlamaEntity;BABY_BASE_DIMENSIONS:Lnet/minecraft/entity/EntityDimensions;
    • spit

      boolean spit
      Mappings:
      Namespace Name Mixin selector
      official ce Lcfw;ce:Z
      intermediary field_6999 Lnet/minecraft/class_1501;field_6999:Z
      named spit Lnet/minecraft/entity/passive/LlamaEntity;spit:Z
    • following

      @Nullable private @Nullable LlamaEntity following
      Mappings:
      Namespace Name Mixin selector
      official cf Lcfw;cf:Lcfw;
      intermediary field_7000 Lnet/minecraft/class_1501;field_7000:Lnet/minecraft/class_1501;
      named following Lnet/minecraft/entity/passive/LlamaEntity;following:Lnet/minecraft/entity/passive/LlamaEntity;
    • follower

      @Nullable private @Nullable LlamaEntity follower
      Mappings:
      Namespace Name Mixin selector
      official cg Lcfw;cg:Lcfw;
      intermediary field_6997 Lnet/minecraft/class_1501;field_6997:Lnet/minecraft/class_1501;
      named follower Lnet/minecraft/entity/passive/LlamaEntity;follower:Lnet/minecraft/entity/passive/LlamaEntity;
  • Constructor Details

    • LlamaEntity

      public LlamaEntity(EntityType<? extends LlamaEntity> type, World world)
      Mappings:
      Namespace Name Mixin selector
      official <init> Lbrh;<init>(Lbrn;Ldad;)V
      intermediary <init> Lnet/minecraft/class_1297;<init>(Lnet/minecraft/class_1299;Lnet/minecraft/class_1937;)V
      named <init> Lnet/minecraft/entity/Entity;<init>(Lnet/minecraft/entity/EntityType;Lnet/minecraft/world/World;)V
  • Method Details

    • isTrader

      public boolean isTrader()
      Mappings:
      Namespace Name Mixin selector
      official gy Lcfw;gy()Z
      intermediary method_6807 Lnet/minecraft/class_1501;method_6807()Z
      named isTrader Lnet/minecraft/entity/passive/LlamaEntity;isTrader()Z
    • setStrength

      private void setStrength(int strength)
      Mappings:
      Namespace Name Mixin selector
      official x Lcfw;x(I)V
      intermediary method_6802 Lnet/minecraft/class_1501;method_6802(I)V
      named setStrength Lnet/minecraft/entity/passive/LlamaEntity;setStrength(I)V
    • initializeStrength

      private void initializeStrength(Random random)
      Mappings:
      Namespace Name Mixin selector
      official b Lcfw;b(Layg;)V
      intermediary method_6796 Lnet/minecraft/class_1501;method_6796(Lnet/minecraft/class_5819;)V
      named initializeStrength Lnet/minecraft/entity/passive/LlamaEntity;initializeStrength(Lnet/minecraft/util/math/random/Random;)V
    • getStrength

      public int getStrength()
      Mappings:
      Namespace Name Mixin selector
      official gz Lcfw;gz()I
      intermediary method_6803 Lnet/minecraft/class_1501;method_6803()I
      named getStrength Lnet/minecraft/entity/passive/LlamaEntity;getStrength()I
    • writeCustomDataToNbt

      public void writeCustomDataToNbt(NbtCompound nbt)
      Writes custom data to nbt. Subclasses have to implement this.

      NBT is a storage format; therefore, a data from NBT is loaded to an entity instance's fields, which are used for other operations instead of the NBT. The data is written back to NBT when saving the entity.

      Overrides:
      writeCustomDataToNbt in class AbstractDonkeyEntity
      See Also:
      Mappings:
      Namespace Name Mixin selector
      official b Lbrh;b(Lua;)V
      intermediary method_5652 Lnet/minecraft/class_1297;method_5652(Lnet/minecraft/class_2487;)V
      named writeCustomDataToNbt Lnet/minecraft/entity/Entity;writeCustomDataToNbt(Lnet/minecraft/nbt/NbtCompound;)V
    • readCustomDataFromNbt

      public void readCustomDataFromNbt(NbtCompound nbt)
      Reads custom data from nbt. Subclasses have to implement this.

      NBT is a storage format; therefore, a data from NBT is loaded to an entity instance's fields, which are used for other operations instead of the NBT. The data is written back to NBT when saving the entity.

      nbt might not have all expected keys, or might have a key whose value does not meet the requirement (such as the type or the range). This method should fall back to a reasonable default value instead of throwing an exception.

      Overrides:
      readCustomDataFromNbt in class AbstractDonkeyEntity
      See Also:
      Mappings:
      Namespace Name Mixin selector
      official a Lbrh;a(Lua;)V
      intermediary method_5749 Lnet/minecraft/class_1297;method_5749(Lnet/minecraft/class_2487;)V
      named readCustomDataFromNbt Lnet/minecraft/entity/Entity;readCustomDataFromNbt(Lnet/minecraft/nbt/NbtCompound;)V
    • initGoals

      protected void initGoals()
      Overrides:
      initGoals in class AbstractHorseEntity
      Mappings:
      Namespace Name Mixin selector
      official z Lbsc;z()V
      intermediary method_5959 Lnet/minecraft/class_1308;method_5959()V
      named initGoals Lnet/minecraft/entity/mob/MobEntity;initGoals()V
    • createLlamaAttributes

      public static DefaultAttributeContainer.Builder createLlamaAttributes()
      Mappings:
      Namespace Name Mixin selector
      official gA Lcfw;gA()Lbtg$a;
      intermediary method_26900 Lnet/minecraft/class_1501;method_26900()Lnet/minecraft/class_5132$class_5133;
      named createLlamaAttributes Lnet/minecraft/entity/passive/LlamaEntity;createLlamaAttributes()Lnet/minecraft/entity/attribute/DefaultAttributeContainer$Builder;
    • initDataTracker

      protected void initDataTracker(DataTracker.Builder builder)
      Initializes data tracker.
      Overrides:
      initDataTracker in class AbstractDonkeyEntity
      Mappings:
      Namespace Name Mixin selector
      official a Lbrh;a(Lajq$a;)V
      intermediary method_5693 Lnet/minecraft/class_1297;method_5693(Lnet/minecraft/class_2945$class_9222;)V
      named initDataTracker Lnet/minecraft/entity/Entity;initDataTracker(Lnet/minecraft/entity/data/DataTracker$Builder;)V
    • getVariant

      public LlamaEntity.Variant getVariant()
      Specified by:
      getVariant in interface VariantHolder<LlamaEntity.Variant>
      Mappings:
      Namespace Name Mixin selector
      official gB Lcfw;gB()Lcfw$d;
      intermediary method_6809 Lnet/minecraft/class_1501;method_6809()Lnet/minecraft/class_1501$class_7993;
      named getVariant Lnet/minecraft/entity/passive/LlamaEntity;getVariant()Lnet/minecraft/entity/passive/LlamaEntity$Variant;
    • setVariant

      public void setVariant(LlamaEntity.Variant variant)
      Specified by:
      setVariant in interface VariantHolder<LlamaEntity.Variant>
      Mappings:
      Namespace Name Mixin selector
      official a Lcfw;a(Lcfw$d;)V
      intermediary method_47874 Lnet/minecraft/class_1501;method_47874(Lnet/minecraft/class_1501$class_7993;)V
      named setVariant Lnet/minecraft/entity/passive/LlamaEntity;setVariant(Lnet/minecraft/entity/passive/LlamaEntity$Variant;)V
    • getInventorySize

      protected int getInventorySize()
      Overrides:
      getInventorySize in class AbstractDonkeyEntity
      Mappings:
      Namespace Name Mixin selector
      official ab_ Lcft;ab_()I
      intermediary method_6750 Lnet/minecraft/class_1496;method_6750()I
      named getInventorySize Lnet/minecraft/entity/passive/AbstractHorseEntity;getInventorySize()I
    • isBreedingItem

      public boolean isBreedingItem(ItemStack stack)
      Overrides:
      isBreedingItem in class AbstractHorseEntity
      Mappings:
      Namespace Name Mixin selector
      official o Lcdp;o(Lcsz;)Z
      intermediary method_6481 Lnet/minecraft/class_1429;method_6481(Lnet/minecraft/class_1799;)Z
      named isBreedingItem Lnet/minecraft/entity/passive/AnimalEntity;isBreedingItem(Lnet/minecraft/item/ItemStack;)Z
    • receiveFood

      protected boolean receiveFood(PlayerEntity player, ItemStack item)
      Overrides:
      receiveFood in class AbstractHorseEntity
      Mappings:
      Namespace Name Mixin selector
      official a Lcft;a(Lclh;Lcsz;)Z
      intermediary method_6742 Lnet/minecraft/class_1496;method_6742(Lnet/minecraft/class_1657;Lnet/minecraft/class_1799;)Z
      named receiveFood Lnet/minecraft/entity/passive/AbstractHorseEntity;receiveFood(Lnet/minecraft/entity/player/PlayerEntity;Lnet/minecraft/item/ItemStack;)Z
    • isImmobile

      public boolean isImmobile()
      Overrides:
      isImmobile in class AbstractHorseEntity
      Mappings:
      Namespace Name Mixin selector
      official fe Lbsa;fe()Z
      intermediary method_6062 Lnet/minecraft/class_1309;method_6062()Z
      named isImmobile Lnet/minecraft/entity/LivingEntity;isImmobile()Z
    • initialize

      @Nullable public @Nullable EntityData initialize(ServerWorldAccess world, LocalDifficulty difficulty, SpawnReason spawnReason, @Nullable @Nullable EntityData entityData)
      Overrides:
      initialize in class AbstractHorseEntity
      Mappings:
      Namespace Name Mixin selector
      official a Lbsc;a(Ldas;Lbpk;Lbse;Lbss;)Lbss;
      intermediary method_5943 Lnet/minecraft/class_1308;method_5943(Lnet/minecraft/class_5425;Lnet/minecraft/class_1266;Lnet/minecraft/class_3730;Lnet/minecraft/class_1315;)Lnet/minecraft/class_1315;
      named initialize Lnet/minecraft/entity/mob/MobEntity;initialize(Lnet/minecraft/world/ServerWorldAccess;Lnet/minecraft/world/LocalDifficulty;Lnet/minecraft/entity/SpawnReason;Lnet/minecraft/entity/EntityData;)Lnet/minecraft/entity/EntityData;
    • shouldAmbientStand

      protected boolean shouldAmbientStand()
      Overrides:
      shouldAmbientStand in class AbstractHorseEntity
      Mappings:
      Namespace Name Mixin selector
      official gv Lcft;gv()Z
      intermediary method_45349 Lnet/minecraft/class_1496;method_45349()Z
      named shouldAmbientStand Lnet/minecraft/entity/passive/AbstractHorseEntity;shouldAmbientStand()Z
    • getAngrySound

      protected SoundEvent getAngrySound()
      Overrides:
      getAngrySound in class AbstractHorseEntity
      Mappings:
      Namespace Name Mixin selector
      official gN Lcft;gN()Lavb;
      intermediary method_6747 Lnet/minecraft/class_1496;method_6747()Lnet/minecraft/class_3414;
      named getAngrySound Lnet/minecraft/entity/passive/AbstractHorseEntity;getAngrySound()Lnet/minecraft/sound/SoundEvent;
    • getAmbientSound

      protected SoundEvent getAmbientSound()
      Overrides:
      getAmbientSound in class MobEntity
      Mappings:
      Namespace Name Mixin selector
      official v Lbsc;v()Lavb;
      intermediary method_5994 Lnet/minecraft/class_1308;method_5994()Lnet/minecraft/class_3414;
      named getAmbientSound Lnet/minecraft/entity/mob/MobEntity;getAmbientSound()Lnet/minecraft/sound/SoundEvent;
    • getHurtSound

      protected SoundEvent getHurtSound(DamageSource source)
      Overrides:
      getHurtSound in class LivingEntity
      Mappings:
      Namespace Name Mixin selector
      official d Lbsa;d(Lbqf;)Lavb;
      intermediary method_6011 Lnet/minecraft/class_1309;method_6011(Lnet/minecraft/class_1282;)Lnet/minecraft/class_3414;
      named getHurtSound Lnet/minecraft/entity/LivingEntity;getHurtSound(Lnet/minecraft/entity/damage/DamageSource;)Lnet/minecraft/sound/SoundEvent;
    • getDeathSound

      protected SoundEvent getDeathSound()
      Overrides:
      getDeathSound in class LivingEntity
      Mappings:
      Namespace Name Mixin selector
      official o_ Lbsa;o_()Lavb;
      intermediary method_6002 Lnet/minecraft/class_1309;method_6002()Lnet/minecraft/class_3414;
      named getDeathSound Lnet/minecraft/entity/LivingEntity;getDeathSound()Lnet/minecraft/sound/SoundEvent;
    • getEatSound

      @Nullable protected @Nullable SoundEvent getEatSound()
      Overrides:
      getEatSound in class AbstractHorseEntity
      Mappings:
      Namespace Name Mixin selector
      official gw Lcft;gw()Lavb;
      intermediary method_28368 Lnet/minecraft/class_1496;method_28368()Lnet/minecraft/class_3414;
      named getEatSound Lnet/minecraft/entity/passive/AbstractHorseEntity;getEatSound()Lnet/minecraft/sound/SoundEvent;
    • playStepSound

      protected void playStepSound(BlockPos pos, BlockState state)
      Overrides:
      playStepSound in class AbstractHorseEntity
      Mappings:
      Namespace Name Mixin selector
      official b Lbrh;b(Lin;Ldqh;)V
      intermediary method_5712 Lnet/minecraft/class_1297;method_5712(Lnet/minecraft/class_2338;Lnet/minecraft/class_2680;)V
      named playStepSound Lnet/minecraft/entity/Entity;playStepSound(Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/BlockState;)V
    • playAddChestSound

      protected void playAddChestSound()
      Overrides:
      playAddChestSound in class AbstractDonkeyEntity
      Mappings:
      Namespace Name Mixin selector
      official gp Lcfs;gp()V
      intermediary method_6705 Lnet/minecraft/class_1492;method_6705()V
      named playAddChestSound Lnet/minecraft/entity/passive/AbstractDonkeyEntity;playAddChestSound()V
    • getInventoryColumns

      public int getInventoryColumns()
      Overrides:
      getInventoryColumns in class AbstractDonkeyEntity
      Mappings:
      Namespace Name Mixin selector
      official gx Lcfs;gx()I
      intermediary method_6702 Lnet/minecraft/class_1492;method_6702()I
      named getInventoryColumns Lnet/minecraft/entity/passive/AbstractDonkeyEntity;getInventoryColumns()I
    • hasArmorSlot

      public boolean hasArmorSlot()
      Overrides:
      hasArmorSlot in class MobEntity
      Mappings:
      Namespace Name Mixin selector
      official fR Lbsc;fR()Z
      intermediary method_6735 Lnet/minecraft/class_1308;method_6735()Z
      named hasArmorSlot Lnet/minecraft/entity/mob/MobEntity;hasArmorSlot()Z
    • isHorseArmor

      public boolean isHorseArmor(ItemStack stack)
      Overrides:
      isHorseArmor in class MobEntity
      Mappings:
      Namespace Name Mixin selector
      official l Lbsc;l(Lcsz;)Z
      intermediary method_6773 Lnet/minecraft/class_1308;method_6773(Lnet/minecraft/class_1799;)Z
      named isHorseArmor Lnet/minecraft/entity/mob/MobEntity;isHorseArmor(Lnet/minecraft/item/ItemStack;)Z
    • canBeSaddled

      public boolean canBeSaddled()
      Specified by:
      canBeSaddled in interface Saddleable
      Overrides:
      canBeSaddled in class AbstractHorseEntity
      Mappings:
      Namespace Name Mixin selector
      official f Lbsp;f()Z
      intermediary method_6765 Lnet/minecraft/class_5146;method_6765()Z
      named canBeSaddled Lnet/minecraft/entity/Saddleable;canBeSaddled()Z
    • onInventoryChanged

      public void onInventoryChanged(Inventory sender)
      Specified by:
      onInventoryChanged in interface InventoryChangedListener
      Overrides:
      onInventoryChanged in class AbstractHorseEntity
      Mappings:
      Namespace Name Mixin selector
      official a Lbph;a(Lbpf;)V
      intermediary method_5453 Lnet/minecraft/class_1265;method_5453(Lnet/minecraft/class_1263;)V
      named onInventoryChanged Lnet/minecraft/inventory/InventoryChangedListener;onInventoryChanged(Lnet/minecraft/inventory/Inventory;)V
    • getColorFromCarpet

      @Nullable private static @Nullable DyeColor getColorFromCarpet(ItemStack color)
      Mappings:
      Namespace Name Mixin selector
      official n Lcfw;n(Lcsz;)Lcrs;
      intermediary method_6794 Lnet/minecraft/class_1501;method_6794(Lnet/minecraft/class_1799;)Lnet/minecraft/class_1767;
      named getColorFromCarpet Lnet/minecraft/entity/passive/LlamaEntity;getColorFromCarpet(Lnet/minecraft/item/ItemStack;)Lnet/minecraft/util/DyeColor;
    • getCarpetColor

      @Nullable public @Nullable DyeColor getCarpetColor()
      Mappings:
      Namespace Name Mixin selector
      official gC Lcfw;gC()Lcrs;
      intermediary method_6800 Lnet/minecraft/class_1501;method_6800()Lnet/minecraft/class_1767;
      named getCarpetColor Lnet/minecraft/entity/passive/LlamaEntity;getCarpetColor()Lnet/minecraft/util/DyeColor;
    • getMaxTemper

      public int getMaxTemper()
      Overrides:
      getMaxTemper in class AbstractHorseEntity
      Mappings:
      Namespace Name Mixin selector
      official gP Lcft;gP()I
      intermediary method_6755 Lnet/minecraft/class_1496;method_6755()I
      named getMaxTemper Lnet/minecraft/entity/passive/AbstractHorseEntity;getMaxTemper()I
    • canBreedWith

      public boolean canBreedWith(AnimalEntity other)
      Overrides:
      canBreedWith in class AbstractHorseEntity
      Mappings:
      Namespace Name Mixin selector
      official a Lcdp;a(Lcdp;)Z
      intermediary method_6474 Lnet/minecraft/class_1429;method_6474(Lnet/minecraft/class_1429;)Z
      named canBreedWith Lnet/minecraft/entity/passive/AnimalEntity;canBreedWith(Lnet/minecraft/entity/passive/AnimalEntity;)Z
    • createChild

      @Nullable public @Nullable LlamaEntity createChild(ServerWorld serverWorld, PassiveEntity passiveEntity)
      Description copied from class: AbstractHorseEntity
      Overrides:
      createChild in class AbstractHorseEntity
      Mappings:
      Namespace Name Mixin selector
      official b Lcfw;b(Laqh;Lbrb;)Lcfw;
      intermediary method_6804 Lnet/minecraft/class_1501;method_6804(Lnet/minecraft/class_3218;Lnet/minecraft/class_1296;)Lnet/minecraft/class_1501;
      named createChild Lnet/minecraft/entity/passive/LlamaEntity;createChild(Lnet/minecraft/server/world/ServerWorld;Lnet/minecraft/entity/passive/PassiveEntity;)Lnet/minecraft/entity/passive/LlamaEntity;
    • createChild

      @Nullable protected @Nullable LlamaEntity createChild()
      Mappings:
      Namespace Name Mixin selector
      official gD Lcfw;gD()Lcfw;
      intermediary method_18004 Lnet/minecraft/class_1501;method_18004()Lnet/minecraft/class_1501;
      named createChild Lnet/minecraft/entity/passive/LlamaEntity;createChild()Lnet/minecraft/entity/passive/LlamaEntity;
    • spitAt

      private void spitAt(LivingEntity target)
      Mappings:
      Namespace Name Mixin selector
      official k Lcfw;k(Lbsa;)V
      intermediary method_6792 Lnet/minecraft/class_1501;method_6792(Lnet/minecraft/class_1309;)V
      named spitAt Lnet/minecraft/entity/passive/LlamaEntity;spitAt(Lnet/minecraft/entity/LivingEntity;)V
    • setSpit

      void setSpit(boolean spit)
      Mappings:
      Namespace Name Mixin selector
      official D Lcfw;D(Z)V
      intermediary method_6808 Lnet/minecraft/class_1501;method_6808(Z)V
      named setSpit Lnet/minecraft/entity/passive/LlamaEntity;setSpit(Z)V
    • handleFallDamage

      public boolean handleFallDamage(float fallDistance, float damageMultiplier, DamageSource damageSource)
      Called when an entity falls.

      Flying mobs and mobs immune to fall damage should override this to do nothing. Mobs with reduced fall damage should override this method to apply reduced damage instead. Some entities explode instead of applying fall damage, like TntMinecartEntity.

      Overrides:
      handleFallDamage in class AbstractHorseEntity
      Returns:
      whether to play the sound when falling on honey block; false for all entities except horses and llamas
      Mappings:
      Namespace Name Mixin selector
      official a Lbrh;a(FFLbqf;)Z
      intermediary method_5747 Lnet/minecraft/class_1297;method_5747(FFLnet/minecraft/class_1282;)Z
      named handleFallDamage Lnet/minecraft/entity/Entity;handleFallDamage(FFLnet/minecraft/entity/damage/DamageSource;)Z
    • stopFollowing

      public void stopFollowing()
      Mappings:
      Namespace Name Mixin selector
      official gZ Lcfw;gZ()V
      intermediary method_6797 Lnet/minecraft/class_1501;method_6797()V
      named stopFollowing Lnet/minecraft/entity/passive/LlamaEntity;stopFollowing()V
    • follow

      public void follow(LlamaEntity llama)
      Mappings:
      Namespace Name Mixin selector
      official a Lcfw;a(Lcfw;)V
      intermediary method_6791 Lnet/minecraft/class_1501;method_6791(Lnet/minecraft/class_1501;)V
      named follow Lnet/minecraft/entity/passive/LlamaEntity;follow(Lnet/minecraft/entity/passive/LlamaEntity;)V
    • hasFollower

      public boolean hasFollower()
      Mappings:
      Namespace Name Mixin selector
      official ha Lcfw;ha()Z
      intermediary method_6793 Lnet/minecraft/class_1501;method_6793()Z
      named hasFollower Lnet/minecraft/entity/passive/LlamaEntity;hasFollower()Z
    • isFollowing

      public boolean isFollowing()
      Mappings:
      Namespace Name Mixin selector
      official hb Lcfw;hb()Z
      intermediary method_6805 Lnet/minecraft/class_1501;method_6805()Z
      named isFollowing Lnet/minecraft/entity/passive/LlamaEntity;isFollowing()Z
    • getFollowing

      @Nullable public @Nullable LlamaEntity getFollowing()
      Mappings:
      Namespace Name Mixin selector
      official hc Lcfw;hc()Lcfw;
      intermediary method_6806 Lnet/minecraft/class_1501;method_6806()Lnet/minecraft/class_1501;
      named getFollowing Lnet/minecraft/entity/passive/LlamaEntity;getFollowing()Lnet/minecraft/entity/passive/LlamaEntity;
    • getFollowLeashSpeed

      protected double getFollowLeashSpeed()
      Overrides:
      getFollowLeashSpeed in class PathAwareEntity
      Mappings:
      Namespace Name Mixin selector
      official go Lbsi;go()D
      intermediary method_6148 Lnet/minecraft/class_1314;method_6148()D
      named getFollowLeashSpeed Lnet/minecraft/entity/mob/PathAwareEntity;getFollowLeashSpeed()D
    • walkToParent

      protected void walkToParent()
      Overrides:
      walkToParent in class AbstractHorseEntity
      Mappings:
      Namespace Name Mixin selector
      official gQ Lcft;gQ()V
      intermediary method_6746 Lnet/minecraft/class_1496;method_6746()V
      named walkToParent Lnet/minecraft/entity/passive/AbstractHorseEntity;walkToParent()V
    • eatsGrass

      public boolean eatsGrass()
      Overrides:
      eatsGrass in class AbstractHorseEntity
      Mappings:
      Namespace Name Mixin selector
      official gR Lcft;gR()Z
      intermediary method_6762 Lnet/minecraft/class_1496;method_6762()Z
      named eatsGrass Lnet/minecraft/entity/passive/AbstractHorseEntity;eatsGrass()Z
    • shootAt

      public void shootAt(LivingEntity target, float pullProgress)
      Specified by:
      shootAt in interface RangedAttackMob
      Mappings:
      Namespace Name Mixin selector
      official a Lcir;a(Lbsa;F)V
      intermediary method_7105 Lnet/minecraft/class_1603;method_7105(Lnet/minecraft/class_1309;F)V
      named shootAt Lnet/minecraft/entity/ai/RangedAttackMob;shootAt(Lnet/minecraft/entity/LivingEntity;F)V
    • getLeashOffset

      public Vec3d getLeashOffset()
      Returns the offset from the entity's position where the leash is attached to.

      This is different from Entity.getLeashPos(float); this method is called on the entity which a leash is attached to.

      Overrides:
      getLeashOffset in class Entity
      Returns:
      the offset from the entity's position where the leash is attached to
      See Also:
      Mappings:
      Namespace Name Mixin selector
      official cK Lbrh;cK()Letp;
      intermediary method_29919 Lnet/minecraft/class_1297;method_29919()Lnet/minecraft/class_243;
      named getLeashOffset Lnet/minecraft/entity/Entity;getLeashOffset()Lnet/minecraft/util/math/Vec3d;
    • getBaseDimensions

      public EntityDimensions getBaseDimensions(EntityPose pose)
      Overrides:
      getBaseDimensions in class AbstractDonkeyEntity
      Mappings:
      Namespace Name Mixin selector
      official e Lbsa;e(Lbsl;)Lbrk;
      intermediary method_55694 Lnet/minecraft/class_1309;method_55694(Lnet/minecraft/class_4050;)Lnet/minecraft/class_4048;
      named getBaseDimensions Lnet/minecraft/entity/LivingEntity;getBaseDimensions(Lnet/minecraft/entity/EntityPose;)Lnet/minecraft/entity/EntityDimensions;
    • getPassengerAttachmentPos

      protected Vec3d getPassengerAttachmentPos(Entity passenger, EntityDimensions dimensions, float scaleFactor)
      Overrides:
      getPassengerAttachmentPos in class AbstractHorseEntity
      Mappings:
      Namespace Name Mixin selector
      official a Lbrh;a(Lbrh;Lbrk;F)Letp;
      intermediary method_52533 Lnet/minecraft/class_1297;method_52533(Lnet/minecraft/class_1297;Lnet/minecraft/class_4048;F)Lnet/minecraft/class_243;
      named getPassengerAttachmentPos Lnet/minecraft/entity/Entity;getPassengerAttachmentPos(Lnet/minecraft/entity/Entity;Lnet/minecraft/entity/EntityDimensions;F)Lnet/minecraft/util/math/Vec3d;