Colors, basic mob AI categories, end world hunger, UX buffs

This commit is contained in:
2022-05-15 18:16:35 +02:00
parent 9890936154
commit 99197d92bb
13 changed files with 275 additions and 103 deletions

View File

@@ -27,4 +27,12 @@ public class Items {
bombItem.setItemMeta(meta);
return bombItem;
}
public static ItemStack makeBombTarget() {
ItemStack bombItem = new ItemStack(Material.CARVED_PUMPKIN);
ItemMeta meta = bombItem.getItemMeta();
meta.setCustomModelData(35197);
bombItem.setItemMeta(meta);
return bombItem;
}
}