minecraft-src/net/minecraft/world/entity/monster/Giant.java
2025-09-18 12:27:44 +00:00

27 lines
888 B
Java

package net.minecraft.world.entity.monster;
import net.minecraft.core.BlockPos;
import net.minecraft.world.entity.EntityType;
import net.minecraft.world.entity.ai.attributes.AttributeSupplier;
import net.minecraft.world.entity.ai.attributes.Attributes;
import net.minecraft.world.level.Level;
import net.minecraft.world.level.LevelReader;
public class Giant extends Monster {
public Giant(EntityType<? extends Giant> entityType, Level level) {
super(entityType, level);
}
public static AttributeSupplier.Builder createAttributes() {
return Monster.createMonsterAttributes()
.add(Attributes.MAX_HEALTH, 100.0)
.add(Attributes.MOVEMENT_SPEED, 0.5)
.add(Attributes.ATTACK_DAMAGE, 50.0)
.add(Attributes.CAMERA_DISTANCE, 16.0);
}
@Override
public float getWalkTargetValue(BlockPos pos, LevelReader level) {
return level.getPathfindingCostFromLightLevels(pos);
}
}