126 lines
4.3 KiB
Java
126 lines
4.3 KiB
Java
/*
|
|
* Decompiled with CFR 0.152.
|
|
*
|
|
* Could not load the following classes:
|
|
* org.jspecify.annotations.Nullable
|
|
*/
|
|
package net.minecraft.world.entity.monster;
|
|
|
|
import net.minecraft.server.level.ServerLevel;
|
|
import net.minecraft.sounds.SoundEvent;
|
|
import net.minecraft.sounds.SoundEvents;
|
|
import net.minecraft.tags.ItemTags;
|
|
import net.minecraft.tags.TagKey;
|
|
import net.minecraft.util.RandomSource;
|
|
import net.minecraft.world.DifficultyInstance;
|
|
import net.minecraft.world.damagesource.DamageSource;
|
|
import net.minecraft.world.effect.MobEffectInstance;
|
|
import net.minecraft.world.effect.MobEffects;
|
|
import net.minecraft.world.entity.Entity;
|
|
import net.minecraft.world.entity.EntitySpawnReason;
|
|
import net.minecraft.world.entity.EntityType;
|
|
import net.minecraft.world.entity.EquipmentSlot;
|
|
import net.minecraft.world.entity.LivingEntity;
|
|
import net.minecraft.world.entity.Mob;
|
|
import net.minecraft.world.entity.SpawnGroupData;
|
|
import net.minecraft.world.entity.ai.attributes.Attributes;
|
|
import net.minecraft.world.entity.ai.goal.target.NearestAttackableTargetGoal;
|
|
import net.minecraft.world.entity.monster.AbstractSkeleton;
|
|
import net.minecraft.world.entity.monster.piglin.AbstractPiglin;
|
|
import net.minecraft.world.entity.projectile.AbstractArrow;
|
|
import net.minecraft.world.item.Item;
|
|
import net.minecraft.world.item.ItemStack;
|
|
import net.minecraft.world.item.Items;
|
|
import net.minecraft.world.level.Level;
|
|
import net.minecraft.world.level.ServerLevelAccessor;
|
|
import net.minecraft.world.level.pathfinder.PathType;
|
|
import org.jspecify.annotations.Nullable;
|
|
|
|
public class WitherSkeleton
|
|
extends AbstractSkeleton {
|
|
public WitherSkeleton(EntityType<? extends WitherSkeleton> type, Level level) {
|
|
super((EntityType<? extends AbstractSkeleton>)type, level);
|
|
this.setPathfindingMalus(PathType.LAVA, 8.0f);
|
|
}
|
|
|
|
@Override
|
|
protected void registerGoals() {
|
|
this.targetSelector.addGoal(3, new NearestAttackableTargetGoal<AbstractPiglin>((Mob)this, AbstractPiglin.class, true));
|
|
super.registerGoals();
|
|
}
|
|
|
|
@Override
|
|
protected SoundEvent getAmbientSound() {
|
|
return SoundEvents.WITHER_SKELETON_AMBIENT;
|
|
}
|
|
|
|
@Override
|
|
protected SoundEvent getHurtSound(DamageSource source) {
|
|
return SoundEvents.WITHER_SKELETON_HURT;
|
|
}
|
|
|
|
@Override
|
|
protected SoundEvent getDeathSound() {
|
|
return SoundEvents.WITHER_SKELETON_DEATH;
|
|
}
|
|
|
|
@Override
|
|
SoundEvent getStepSound() {
|
|
return SoundEvents.WITHER_SKELETON_STEP;
|
|
}
|
|
|
|
@Override
|
|
public TagKey<Item> getPreferredWeaponType() {
|
|
return null;
|
|
}
|
|
|
|
@Override
|
|
public boolean canHoldItem(ItemStack itemStack) {
|
|
return !itemStack.is(ItemTags.WITHER_SKELETON_DISLIKED_WEAPONS) && super.canHoldItem(itemStack);
|
|
}
|
|
|
|
@Override
|
|
protected void populateDefaultEquipmentSlots(RandomSource random, DifficultyInstance difficulty) {
|
|
this.setItemSlot(EquipmentSlot.MAINHAND, new ItemStack(Items.STONE_SWORD));
|
|
}
|
|
|
|
@Override
|
|
protected void populateDefaultEquipmentEnchantments(ServerLevelAccessor level, RandomSource random, DifficultyInstance localDifficulty) {
|
|
}
|
|
|
|
@Override
|
|
public @Nullable SpawnGroupData finalizeSpawn(ServerLevelAccessor level, DifficultyInstance difficulty, EntitySpawnReason spawnReason, @Nullable SpawnGroupData groupData) {
|
|
SpawnGroupData spawnGroupData = super.finalizeSpawn(level, difficulty, spawnReason, groupData);
|
|
this.getAttribute(Attributes.ATTACK_DAMAGE).setBaseValue(4.0);
|
|
this.reassessWeaponGoal();
|
|
return spawnGroupData;
|
|
}
|
|
|
|
@Override
|
|
public boolean doHurtTarget(ServerLevel level, Entity target) {
|
|
if (!super.doHurtTarget(level, target)) {
|
|
return false;
|
|
}
|
|
if (target instanceof LivingEntity) {
|
|
((LivingEntity)target).addEffect(new MobEffectInstance(MobEffects.WITHER, 200), this);
|
|
}
|
|
return true;
|
|
}
|
|
|
|
@Override
|
|
protected AbstractArrow getArrow(ItemStack projectile, float power, @Nullable ItemStack firingWeapon) {
|
|
AbstractArrow arrow = super.getArrow(projectile, power, firingWeapon);
|
|
arrow.igniteForSeconds(100.0f);
|
|
return arrow;
|
|
}
|
|
|
|
@Override
|
|
public boolean canBeAffected(MobEffectInstance newEffect) {
|
|
if (newEffect.is(MobEffects.WITHER)) {
|
|
return false;
|
|
}
|
|
return super.canBeAffected(newEffect);
|
|
}
|
|
}
|
|
|