Spaces:
Build error
Build error
File size: 2,453 Bytes
d46f4a3 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 |
package net.minecraft.world.effect;
import java.util.function.ToIntFunction;
import net.minecraft.core.particles.ParticleTypes;
import net.minecraft.server.level.ServerLevel;
import net.minecraft.sounds.SoundEvents;
import net.minecraft.util.Mth;
import net.minecraft.util.RandomSource;
import net.minecraft.world.damagesource.DamageSource;
import net.minecraft.world.entity.EntitySpawnReason;
import net.minecraft.world.entity.EntityType;
import net.minecraft.world.entity.LivingEntity;
import net.minecraft.world.entity.monster.Silverfish;
import net.minecraft.world.phys.Vec3;
import org.joml.Vector3f;
class InfestedMobEffect extends MobEffect {
private final float chanceToSpawn;
private final ToIntFunction<RandomSource> spawnedCount;
protected InfestedMobEffect(MobEffectCategory p_330372_, int p_332310_, float p_334976_, ToIntFunction<RandomSource> p_328183_) {
super(p_330372_, p_332310_, ParticleTypes.INFESTED);
this.chanceToSpawn = p_334976_;
this.spawnedCount = p_328183_;
}
@Override
public void onMobHurt(ServerLevel p_364179_, LivingEntity p_334146_, int p_328888_, DamageSource p_330722_, float p_331740_) {
if (p_334146_.getRandom().nextFloat() <= this.chanceToSpawn) {
int i = this.spawnedCount.applyAsInt(p_334146_.getRandom());
for (int j = 0; j < i; j++) {
this.spawnSilverfish(p_364179_, p_334146_, p_334146_.getX(), p_334146_.getY() + (double)p_334146_.getBbHeight() / 2.0, p_334146_.getZ());
}
}
}
private void spawnSilverfish(ServerLevel p_367211_, LivingEntity p_327972_, double p_334243_, double p_334439_, double p_333358_) {
Silverfish silverfish = EntityType.SILVERFISH.create(p_367211_, EntitySpawnReason.TRIGGERED);
if (silverfish != null) {
RandomSource randomsource = p_327972_.getRandom();
float f = (float) (Math.PI / 2);
float f1 = Mth.randomBetween(randomsource, (float) (-Math.PI / 2), (float) (Math.PI / 2));
Vector3f vector3f = p_327972_.getLookAngle().toVector3f().mul(0.3F).mul(1.0F, 1.5F, 1.0F).rotateY(f1);
silverfish.moveTo(p_334243_, p_334439_, p_333358_, p_367211_.getRandom().nextFloat() * 360.0F, 0.0F);
silverfish.setDeltaMovement(new Vec3(vector3f));
p_367211_.addFreshEntity(silverfish);
silverfish.playSound(SoundEvents.SILVERFISH_HURT);
}
}
} |