package net.minecraft.world.entity.animal.axolotl; import com.google.common.collect.ImmutableMap; import net.minecraft.server.level.ServerLevel; import net.minecraft.world.effect.MobEffectInstance; import net.minecraft.world.effect.MobEffects; import net.minecraft.world.entity.ai.Brain; import net.minecraft.world.entity.ai.behavior.Behavior; import net.minecraft.world.entity.ai.memory.MemoryModuleType; import net.minecraft.world.entity.ai.memory.MemoryStatus; public class PlayDead extends Behavior { public PlayDead() { super(ImmutableMap.of(MemoryModuleType.PLAY_DEAD_TICKS, MemoryStatus.VALUE_PRESENT, MemoryModuleType.HURT_BY_ENTITY, MemoryStatus.VALUE_PRESENT), 200); } protected boolean checkExtraStartConditions(final ServerLevel level, final Axolotl body) { return body.isInWater(); } protected boolean canStillUse(final ServerLevel level, final Axolotl body, final long timestamp) { return body.isInWater() && body.getBrain().hasMemoryValue(MemoryModuleType.PLAY_DEAD_TICKS); } protected void start(final ServerLevel level, final Axolotl body, final long timestamp) { Brain brain = body.getBrain(); brain.eraseMemory(MemoryModuleType.WALK_TARGET); brain.eraseMemory(MemoryModuleType.LOOK_TARGET); body.addEffect(new MobEffectInstance(MobEffects.REGENERATION, 200, 0)); } }