diff --git a/common/src/main/java/net/blay09/mods/balm/api/tag/BalmItemTags.java b/common/src/main/java/net/blay09/mods/balm/api/tag/BalmItemTags.java index 493e9ce7..da761c23 100644 --- a/common/src/main/java/net/blay09/mods/balm/api/tag/BalmItemTags.java +++ b/common/src/main/java/net/blay09/mods/balm/api/tag/BalmItemTags.java @@ -7,37 +7,39 @@ import net.minecraft.world.item.Item; public class BalmItemTags { - public static final TagKey BLACK_DYES = TagKey.create(Registries.ITEM, new ResourceLocation("c", "dyes/black")); - public static final TagKey BLUE_DYES = TagKey.create(Registries.ITEM, new ResourceLocation("c", "dyes/blue")); - public static final TagKey BROWN_DYES = TagKey.create(Registries.ITEM, new ResourceLocation("c", "dyes/brown")); - public static final TagKey DIAMONDS = TagKey.create(Registries.ITEM, new ResourceLocation("c", "gems/diamonds")); public static final TagKey COOKING_OIL = TagKey.create(Registries.ITEM, new ResourceLocation("c", "cooking_oil")); - public static final TagKey CYAN_DYES = TagKey.create(Registries.ITEM, new ResourceLocation("c", "dyes/cyan")); - public static final TagKey DYES = TagKey.create(Registries.ITEM, new ResourceLocation("c", "dyes")); + public static final TagKey DIAMONDS = TagKey.create(Registries.ITEM, new ResourceLocation("c", "gems/diamonds")); public static final TagKey EGGS = TagKey.create(Registries.ITEM, new ResourceLocation("c", "eggs")); public static final TagKey EMERALDS = TagKey.create(Registries.ITEM, new ResourceLocation("c", "gems/emerald")); public static final TagKey GEMS = TagKey.create(Registries.ITEM, new ResourceLocation("c", "gems")); public static final TagKey GOLD_NUGGETS = TagKey.create(Registries.ITEM, new ResourceLocation("c", "nuggets/gold")); - public static final TagKey GRAY_DYES = TagKey.create(Registries.ITEM, new ResourceLocation("c", "dyes/gray")); - public static final TagKey GREEN_DYES = TagKey.create(Registries.ITEM, new ResourceLocation("c", "dyes/green")); public static final TagKey INGOTS = TagKey.create(Registries.ITEM, new ResourceLocation("c", "ingots")); public static final TagKey IRON_INGOTS = TagKey.create(Registries.ITEM, new ResourceLocation("c", "ingots/iron")); public static final TagKey IRON_NUGGETS = TagKey.create(Registries.ITEM, new ResourceLocation("c", "nuggets/iron")); - public static final TagKey LIGHT_BLUE_DYES = TagKey.create(Registries.ITEM, new ResourceLocation("c", "dyes/light_blue")); - public static final TagKey LIGHT_GRAY_DYES = TagKey.create(Registries.ITEM, new ResourceLocation("c", "dyes/light_gray")); - public static final TagKey LIME_DYES = TagKey.create(Registries.ITEM, new ResourceLocation("c", "dyes/lime")); - public static final TagKey MAGENTA_DYES = TagKey.create(Registries.ITEM, new ResourceLocation("c", "dyes/magenta")); public static final TagKey NUGGETS = TagKey.create(Registries.ITEM, new ResourceLocation("c", "nuggets")); - public static final TagKey ORANGE_DYES = TagKey.create(Registries.ITEM, new ResourceLocation("c", "dyes/orange")); public static final TagKey ORES = TagKey.create(Registries.ITEM, new ResourceLocation("c", "ores")); - public static final TagKey PINK_DYES = TagKey.create(Registries.ITEM, new ResourceLocation("c", "dyes/pink")); - public static final TagKey PURPLE_DYES = TagKey.create(Registries.ITEM, new ResourceLocation("c", "dyes/purple")); - public static final TagKey RED_DYES = TagKey.create(Registries.ITEM, new ResourceLocation("c", "dyes/red")); public static final TagKey STONES = TagKey.create(Registries.ITEM, new ResourceLocation("c", "stones")); - public static final TagKey WHITE_DYES = TagKey.create(Registries.ITEM, new ResourceLocation("c", "dyes/white")); public static final TagKey WOODEN_CHESTS = TagKey.create(Registries.ITEM, new ResourceLocation("c", "chests/wooden")); public static final TagKey WOODEN_RODS = TagKey.create(Registries.ITEM, new ResourceLocation("c", "rods/wooden")); + + // Dye tags + public static final TagKey DYES = TagKey.create(Registries.ITEM, new ResourceLocation("c", "dyes")); + public static final TagKey WHITE_DYES = TagKey.create(Registries.ITEM, new ResourceLocation("c", "dyes/white")); + public static final TagKey ORANGE_DYES = TagKey.create(Registries.ITEM, new ResourceLocation("c", "dyes/orange")); + public static final TagKey MAGENTA_DYES = TagKey.create(Registries.ITEM, new ResourceLocation("c", "dyes/magenta")); + public static final TagKey LIGHT_BLUE_DYES = TagKey.create(Registries.ITEM, new ResourceLocation("c", "dyes/light_blue")); public static final TagKey YELLOW_DYES = TagKey.create(Registries.ITEM, new ResourceLocation("c", "dyes/yellow")); + public static final TagKey LIME_DYES = TagKey.create(Registries.ITEM, new ResourceLocation("c", "dyes/lime")); + public static final TagKey PINK_DYES = TagKey.create(Registries.ITEM, new ResourceLocation("c", "dyes/pink")); + public static final TagKey GRAY_DYES = TagKey.create(Registries.ITEM, new ResourceLocation("c", "dyes/gray")); + public static final TagKey LIGHT_GRAY_DYES = TagKey.create(Registries.ITEM, new ResourceLocation("c", "dyes/light_gray")); + public static final TagKey CYAN_DYES = TagKey.create(Registries.ITEM, new ResourceLocation("c", "dyes/cyan")); + public static final TagKey PURPLE_DYES = TagKey.create(Registries.ITEM, new ResourceLocation("c", "dyes/purple")); + public static final TagKey BLUE_DYES = TagKey.create(Registries.ITEM, new ResourceLocation("c", "dyes/blue")); + public static final TagKey BROWN_DYES = TagKey.create(Registries.ITEM, new ResourceLocation("c", "dyes/brown")); + public static final TagKey GREEN_DYES = TagKey.create(Registries.ITEM, new ResourceLocation("c", "dyes/green")); + public static final TagKey RED_DYES = TagKey.create(Registries.ITEM, new ResourceLocation("c", "dyes/red")); + public static final TagKey BLACK_DYES = TagKey.create(Registries.ITEM, new ResourceLocation("c", "dyes/black")); @SuppressWarnings("unchecked") public static final TagKey[] DYE_TAGS = new TagKey[] {