bukkit
スポーンエッグス
サーチ…
備考
エンティティタイプをよりよく理解するには、 エンティティドキュメントを参照してください。
SpawnEggのItemStackの作成
1.9以下のもの
SpawnEgg egg = new SpawnEgg(EntityType.CREEPER);
ItemStack creeperEgg = egg.toItemStack(5);
1.9以上の場合
バージョン1.9以降では、SpigotにNMSを使用せずに産卵を作成する実装はありません。これを実現するには、小さなカスタムクラス/ラッパーを使用してそれを実現させることができます:
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
ライセンスを受けた CC BY-SA 3.0
所属していない Stack Overflow