bukkit
Huevos de engendro
Buscar..
Observaciones
Consulte la Documentación de Entidades para entender mejor EntityType
Creando un ItemStack de un SpawnEgg
Para cualquier cosa por debajo de 1.9
SpawnEgg egg = new SpawnEgg(EntityType.CREEPER);
ItemStack creeperEgg = egg.toItemStack(5);
Para 1.9 y superior
En las versiones 1.9 y posteriores, Spigot no tiene una implementación para crear huevos de desove sin usar NMS. Para lograr esto, puedes usar una pequeña clase / envoltorio personalizado para que esto suceda:
public ItemStack toItemStack(int amount, EntityType type) {
ItemStack item = new ItemStack(Material.MONSTER_EGG, amount);
net.minecraft.server.v1_9_R1.ItemStack stack = CraftItemStack.asNMSCopy(item);
NBTTagCompound tagCompound = stack.getTag();
if(tagCompound == null){
tagCompound = new NBTTagCompound();
}
NBTTagCompound id = new NBTTagCompound();
id.setString("id", type.getName());
tagCompound.set("EntityTag", id);
stack.setTag(tagCompound);
return CraftItemStack.asBukkitCopy(stack);
}
Modified text is an extract of the original Stack Overflow Documentation
Licenciado bajo CC BY-SA 3.0
No afiliado a Stack Overflow