2024-02-03 22:45:49 +03:00
|
|
|
package ru.magistu.siegemachines.entity.projectile;
|
|
|
|
|
|
|
|
|
|
|
|
import net.minecraft.world.entity.EntityType;
|
|
|
|
import net.minecraft.world.entity.LivingEntity;
|
|
|
|
import net.minecraft.world.item.Item;
|
|
|
|
import net.minecraft.world.level.Level;
|
2025-03-03 22:16:00 +11:00
|
|
|
import net.minecraft.world.phys.Vec3;
|
2024-02-03 22:45:49 +03:00
|
|
|
import ru.magistu.siegemachines.item.ModItems;
|
|
|
|
|
2025-03-03 22:16:00 +11:00
|
|
|
public class GiantStone extends Missile {
|
|
|
|
public GiantStone(EntityType<GiantStone> entitytype, Level level) {
|
|
|
|
super(entitytype, level);
|
|
|
|
this.item = ModItems.GIANT_STONE.get();
|
|
|
|
}
|
2024-02-03 22:45:49 +03:00
|
|
|
|
2025-03-03 22:16:00 +11:00
|
|
|
public GiantStone(EntityType<GiantStone> entitytype, Level level, Vec3 pos, LivingEntity entity, Item item) {
|
|
|
|
super(entitytype, level, pos, entity, MissileType.GIANT_STONE, item);
|
|
|
|
}
|
2024-02-03 22:45:49 +03:00
|
|
|
}
|