Class EndCrystalEntity

java.lang.Object
net.minecraft.entity.Entity
net.minecraft.entity.decoration.EndCrystalEntity
All Implemented Interfaces:
CommandOutput, Nameable, EntityLike

public class EndCrystalEntity extends Entity
Mappings:
Namespace Name
official bsb
intermediary net/minecraft/class_1511
named net/minecraft/entity/decoration/EndCrystalEntity
  • Field Details

    • BEAM_TARGET

      private static final TrackedData<Optional<BlockPos>> BEAM_TARGET
      Mappings:
      Namespace Name Mixin selector
      official c Lbsb;c:Labn;
      intermediary field_7033 Lnet/minecraft/class_1511;field_7033:Lnet/minecraft/class_2940;
      named BEAM_TARGET Lnet/minecraft/entity/decoration/EndCrystalEntity;BEAM_TARGET:Lnet/minecraft/entity/data/TrackedData;
    • SHOW_BOTTOM

      private static final TrackedData<Boolean> SHOW_BOTTOM
      Mappings:
      Namespace Name Mixin selector
      official d Lbsb;d:Labn;
      intermediary field_7035 Lnet/minecraft/class_1511;field_7035:Lnet/minecraft/class_2940;
      named SHOW_BOTTOM Lnet/minecraft/entity/decoration/EndCrystalEntity;SHOW_BOTTOM:Lnet/minecraft/entity/data/TrackedData;
    • endCrystalAge

      public int endCrystalAge
      Mappings:
      Namespace Name Mixin selector
      official b Lbsb;b:I
      intermediary field_7034 Lnet/minecraft/class_1511;field_7034:I
      named endCrystalAge Lnet/minecraft/entity/decoration/EndCrystalEntity;endCrystalAge:I
  • Constructor Details

    • EndCrystalEntity

      public EndCrystalEntity(EntityType<? extends EndCrystalEntity> type, World world)
      Mappings:
      Namespace Name Mixin selector
      official <init> Lbdr;<init>(Lbdv;Lcjw;)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
    • EndCrystalEntity

      public EndCrystalEntity(World world, double x, double y, double z)
      Mappings:
      Namespace Name Mixin selector
      official <init> Lbsb;<init>(Lcjw;DDD)V
      intermediary <init> Lnet/minecraft/class_1511;<init>(Lnet/minecraft/class_1937;DDD)V
      named <init> Lnet/minecraft/entity/decoration/EndCrystalEntity;<init>(Lnet/minecraft/world/World;DDD)V
  • Method Details

    • getMoveEffect

      protected Entity.MoveEffect getMoveEffect()
      Returns the possible effect(s) of an entity moving.
      Overrides:
      getMoveEffect in class Entity
      Mappings:
      Namespace Name Mixin selector
      official aS Lbdr;aS()Lbdr$b;
      intermediary method_33570 Lnet/minecraft/class_1297;method_33570()Lnet/minecraft/class_1297$class_5799;
      named getMoveEffect Lnet/minecraft/entity/Entity;getMoveEffect()Lnet/minecraft/entity/Entity$MoveEffect;
    • initDataTracker

      protected void initDataTracker()
      Initializes data tracker.
      Specified by:
      initDataTracker in class Entity
      Mappings:
      Namespace Name Mixin selector
      official a_ Lbdr;a_()V
      intermediary method_5693 Lnet/minecraft/class_1297;method_5693()V
      named initDataTracker Lnet/minecraft/entity/Entity;initDataTracker()V
    • tick

      public void tick()
      Ticks this entity.
      Overrides:
      tick in class Entity
      See Also:
      Mappings:
      Namespace Name Mixin selector
      official l Lbdr;l()V
      intermediary method_5773 Lnet/minecraft/class_1297;method_5773()V
      named tick Lnet/minecraft/entity/Entity;tick()V
    • writeCustomDataToNbt

      protected void writeCustomDataToNbt(NbtCompound nbt)
      Writes custom data to nbt. Subclasses has 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.

      Specified by:
      writeCustomDataToNbt in class Entity
      See Also:
      Mappings:
      Namespace Name Mixin selector
      official b Lbdr;b(Lqp;)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

      protected void readCustomDataFromNbt(NbtCompound nbt)
      Reads custom data from nbt. Subclasses has 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.

      Specified by:
      readCustomDataFromNbt in class Entity
      See Also:
      Mappings:
      Namespace Name Mixin selector
      official a Lbdr;a(Lqp;)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
    • canHit

      public boolean canHit()
      Returns whether the entity can be hit with a projectile or be targeted by the player crosshair.
      Overrides:
      canHit in class Entity
      Returns:
      whether the entity can be hit with a projectile or be targeted by the player crosshair
      Mappings:
      Namespace Name Mixin selector
      official bn Lbdr;bn()Z
      intermediary method_5863 Lnet/minecraft/class_1297;method_5863()Z
      named canHit Lnet/minecraft/entity/Entity;canHit()Z
    • damage

      public boolean damage(DamageSource source, float amount)
      Applies a damage to this entity. The exact implementation differs between subclasses.

      LivingEntity has health value, and damaging the entity decreases it. This also handles shields, extra damage to helmets for falling blocks, setting the attacker, playing hurt sound, etc.

      Some entities like ItemEntity also have health value, which the overridden method decrements. There also exist several entities, like EndCrystalEntity, where any damage discards the entity (perhaps with an explosion).

      If this is overridden, it must check the result of Entity.isInvulnerableTo(net.minecraft.entity.damage.DamageSource) and return early.

      Overrides:
      damage in class Entity
      Returns:
      whether the entity was actually damaged
      See Also:
      Mappings:
      Namespace Name Mixin selector
      official a Lbdr;a(Lbcz;F)Z
      intermediary method_5643 Lnet/minecraft/class_1297;method_5643(Lnet/minecraft/class_1282;F)Z
      named damage Lnet/minecraft/entity/Entity;damage(Lnet/minecraft/entity/damage/DamageSource;F)Z
    • kill

      public void kill()
      Kills the entity.

      This drops loot when applicable, and emits the GameEvent.ENTITY_DIE game event.

      Overrides:
      kill in class Entity
      Mappings:
      Namespace Name Mixin selector
      official aj Lbdr;aj()V
      intermediary method_5768 Lnet/minecraft/class_1297;method_5768()V
      named kill Lnet/minecraft/entity/Entity;kill()V
    • crystalDestroyed

      private void crystalDestroyed(DamageSource source)
      Mappings:
      Namespace Name Mixin selector
      official a Lbsb;a(Lbcz;)V
      intermediary method_6835 Lnet/minecraft/class_1511;method_6835(Lnet/minecraft/class_1282;)V
      named crystalDestroyed Lnet/minecraft/entity/decoration/EndCrystalEntity;crystalDestroyed(Lnet/minecraft/entity/damage/DamageSource;)V
    • setBeamTarget

      public void setBeamTarget(@Nullable @Nullable BlockPos beamTarget)
      Mappings:
      Namespace Name Mixin selector
      official a Lbsb;a(Lgp;)V
      intermediary method_6837 Lnet/minecraft/class_1511;method_6837(Lnet/minecraft/class_2338;)V
      named setBeamTarget Lnet/minecraft/entity/decoration/EndCrystalEntity;setBeamTarget(Lnet/minecraft/util/math/BlockPos;)V
    • getBeamTarget

      @Nullable public @Nullable BlockPos getBeamTarget()
      Mappings:
      Namespace Name Mixin selector
      official h Lbsb;h()Lgp;
      intermediary method_6838 Lnet/minecraft/class_1511;method_6838()Lnet/minecraft/class_2338;
      named getBeamTarget Lnet/minecraft/entity/decoration/EndCrystalEntity;getBeamTarget()Lnet/minecraft/util/math/BlockPos;
    • setShowBottom

      public void setShowBottom(boolean showBottom)
      Mappings:
      Namespace Name Mixin selector
      official a Lbsb;a(Z)V
      intermediary method_6839 Lnet/minecraft/class_1511;method_6839(Z)V
      named setShowBottom Lnet/minecraft/entity/decoration/EndCrystalEntity;setShowBottom(Z)V
    • shouldShowBottom

      public boolean shouldShowBottom()
      Mappings:
      Namespace Name Mixin selector
      official i Lbsb;i()Z
      intermediary method_6836 Lnet/minecraft/class_1511;method_6836()Z
      named shouldShowBottom Lnet/minecraft/entity/decoration/EndCrystalEntity;shouldShowBottom()Z
    • shouldRender

      public boolean shouldRender(double distance)
      Overrides:
      shouldRender in class Entity
      Mappings:
      Namespace Name Mixin selector
      official a Lbdr;a(D)Z
      intermediary method_5640 Lnet/minecraft/class_1297;method_5640(D)Z
      named shouldRender Lnet/minecraft/entity/Entity;shouldRender(D)Z
    • getPickBlockStack

      public ItemStack getPickBlockStack()
      Returns the stack for creative "pick block" functionality, or null if there is none.

      If the entity has an item representation (such as boats or minecarts), this should be overridden to return a new stack. Note that MobEntity handles the spawn eggs. ItemFrameEntity instead returns the copy of the stack held in the frame.

      Overrides:
      getPickBlockStack in class Entity
      Returns:
      the stack for creative "pick block" functionality, or null if there is none
      Mappings:
      Namespace Name Mixin selector
      official ds Lbdr;ds()Lcdt;
      intermediary method_31480 Lnet/minecraft/class_1297;method_31480()Lnet/minecraft/class_1799;
      named getPickBlockStack Lnet/minecraft/entity/Entity;getPickBlockStack()Lnet/minecraft/item/ItemStack;